aboutsummaryrefslogtreecommitdiffstats
path: root/chunkwm/.chunkwmrc
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2018-11-29 11:00:32 +0100
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2018-11-29 11:00:32 +0100
commit4028df8bdbde8d8ae8960619b9f848fe01757310 (patch)
treef116b1c9d977c29f5441f39d90439b386a3ff4f8 /chunkwm/.chunkwmrc
parent6c7070e305f4dc7ae29ad1fc51233abdf1cf6330 (diff)
downloaddotfiles-4028df8bdbde8d8ae8960619b9f848fe01757310.tar.gz
dotfiles-4028df8bdbde8d8ae8960619b9f848fe01757310.tar.bz2
dotfiles-4028df8bdbde8d8ae8960619b9f848fe01757310.zip
Added chunkwm
Diffstat (limited to 'chunkwm/.chunkwmrc')
-rwxr-xr-xchunkwm/.chunkwmrc141
1 files changed, 141 insertions, 0 deletions
diff --git a/chunkwm/.chunkwmrc b/chunkwm/.chunkwmrc
new file mode 100755
index 0000000..be69b30
--- /dev/null
+++ b/chunkwm/.chunkwmrc
@@ -0,0 +1,141 @@
1#!/bin/bash
2
3#
4# NOTE: any 'chunkc' command that is run from this config file
5# that is NOT 'chunkc core::<..>' or 'chunkc set ..'
6# MUST be put in the background using &
7#
8# e.g:
9# chunkc tiling::rule --owner Finder --name Copy --state float &
10#
11
12#
13# NOTE: specify the absolutepath of the file to use for logging.
14# 'stdout' or 'stderr' can be used instead of an actual filepath.
15#
16
17chunkc core::log_file stdout
18
19#
20# NOTE: specify the desired level of logging.
21#
22# - none, debug, profile, warn, error
23#
24
25chunkc core::log_level warn
26
27#
28# NOTE: specify the absolutepath to the directory to use when loading a plugin.
29#
30
31chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins
32
33#
34# NOTE: if enabled, chunkwm will monitor the specified plugin_dir
35# and automatically reload any '.so' file that is changed.
36#
37
38chunkc core::hotload 0
39
40#
41# NOTE: the following are config variables for the chunkwm-tiling plugin.
42#
43
44chunkc set custom_bar_enabled 0
45chunkc set custom_bar_all_monitors 0
46chunkc set custom_bar_offset_top 22
47chunkc set custom_bar_offset_bottom 0
48chunkc set custom_bar_offset_left 0
49chunkc set custom_bar_offset_right 0
50
51chunkc set global_desktop_mode bsp
52chunkc set global_desktop_offset_top 20
53chunkc set global_desktop_offset_bottom 20
54chunkc set global_desktop_offset_left 20
55chunkc set global_desktop_offset_right 20
56chunkc set global_desktop_offset_gap 15
57
58#
59# NOTE: syntax for desktop-specific settings
60#
61# chunkc set 2_desktop_mode monocle
62# chunkc set 5_desktop_mode float
63# chunkc set 3_desktop_offset_top 190
64# chunkc set 3_desktop_offset_bottom 190
65# chunkc set 3_desktop_offset_left 190
66# chunkc set 3_desktop_offset_right 190
67# chunkc set 3_desktop_offset_gap 30
68#
69
70chunkc set desktop_padding_step_size 10.0
71chunkc set desktop_gap_step_size 5.0
72
73chunkc set bsp_spawn_left 1
74chunkc set bsp_optimal_ratio 1.618
75chunkc set bsp_split_mode optimal
76chunkc set bsp_split_ratio 0.5
77
78chunkc set monitor_focus_cycle 1
79chunkc set window_focus_cycle monitor
80
81chunkc set mouse_follows_focus intrinsic
82chunkc set window_float_next 0
83chunkc set window_region_locked 1
84
85chunkc set mouse_move_window \"fn 1\"
86chunkc set mouse_resize_window \"fn 2\"
87chunkc set mouse_motion_interval 35
88
89chunkc set preselect_border_color 0xffd75f5f
90chunkc set preselect_border_width 5
91chunkc set preselect_border_radius 0
92chunkc set preselect_border_outline 0
93
94#
95# NOTE: these settings require chwm-sa.
96# (https://github.com/koekeishiya/chwm-sa)
97#
98
99chunkc set window_float_topmost 0
100chunkc set window_fade_inactive 0
101chunkc set window_fade_alpha 0.85
102chunkc set window_fade_duration 0.25
103chunkc set window_use_cgs_move 0
104
105#
106# NOTE: the following are config variables for the chunkwm-border plugin.
107#
108# NOTE: syntax for `focused_border_outline` setting
109# 0 = false, inline border
110# 1 = true, outline border
111#
112
113chunkc set focused_border_color 0xff0f6288
114chunkc set focused_border_width 5
115chunkc set focused_border_radius 0
116chunkc set focused_border_outline 0
117chunkc set focused_border_skip_floating 0
118chunkc set focused_border_skip_monocle 0
119
120#
121# NOTE: the following are config variables for the chunkwm-ffm plugin.
122#
123
124chunkc set ffm_bypass_modifier fn
125chunkc set ffm_standby_on_float 1
126
127#
128# NOTE: specify plugins to load when chunkwm starts.
129#
130
131chunkc core::load border.so
132chunkc core::load tiling.so
133chunkc core::load ffm.so
134
135#
136# NOTE: sample rules for the tiling plugin
137#
138
139chunkc tiling::rule --owner Finder --name Copy --state float &
140chunkc tiling::rule --owner \"App Store\" --state float &
141chunkc tiling::rule --owner Emacs --except "^$" --state tile &