-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchunkwmrc
executable file
·97 lines (80 loc) · 2.84 KB
/
chunkwmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash
#
# NOTE: specify the absolutepath of the file to use for logging.
# 'stdout' and 'stderr' are valid values.
#
chunkc core::log_file /usr/local/var/log/chunkwm/chunkwm.log
#
# NOTE: specify the desired level of logging.
#
# - none, debug, warn, error
#
chunkc core::log_level warn
# NOTE: specify the absolutepath to the directory to use when
# loading a plugin. '~' expansion is supported.
#
chunkc core::plugin_dir /usr/local/opt/chunkwm/share/chunkwm/plugins
#
# NOTE: if enabled, chunkwm will monitor the specified plugin_dir
# and automatically reload any '.so' file that is changed.
#
chunkc core::hotload 0
#
# NOTE: The following are config variables for the chunkwm-tiling plugin
#
chunkc set global_desktop_mode bsp
chunkc set global_desktop_offset_top 30
chunkc set global_desktop_offset_bottom 30
chunkc set global_desktop_offset_left 30
chunkc set global_desktop_offset_right 30
chunkc set global_desktop_offset_gap 15
chunkc set desktop_padding_step_size 10.0
chunkc set desktop_gap_step_size 5.0
chunkc set bsp_spawn_left 0
chunkc set bsp_optimal_ratio 1.618
chunkc set bsp_split_mode optimal
chunkc set bsp_split_ratio 0.5
chunkc set monitor_focus_cycle 1
chunkc set window_focus_cycle monitor
chunkc set mouse_follows_focus intrinsic
chunkc set window_float_next 1
chunkc set window_float_center 1
chunkc set window_region_locked 0
chunkc set preselect_border_color 0x00ffff00
chunkc set preselect_border_width 0
chunkc set preselect_border_radius 4
# signal dock to make windows topmost when floated
# requires chwm-sa (https://github.com/koekeishiya/chwm-sa)
chunkc set window_float_topmost 0
chunkc set window_fade_inactive 0
chunkc set window_fade_alpha 0.85
chunkc set window_fade_duration 0.25
chunkc set window_use_cgs_move 0
#
# NOTE: The following are config variables for the chunkwm-border plugin
#
chunkc set focused_border_color 0xff89ddff
chunkc set focused_border_width 5
chunkc set focused_border_radius 0
chunkc set focused_border_skip_floating 0
# Background blur when windows opened
# chunkc set wallpaper ~/Pictures/Wallpapers/wallhaven-629268.jpg
# chunkc set wallpaper_blur 0.5
chunkc set wallpaper ~/Pictures/Wallpapers/wallhaven-629268.jpg
chunkc set wallpaper_blur 20.0
#
# NOTE: specify plugins to load when chunkwm starts.
#
chunkc core::load border.so
chunkc core::load tiling.so
chunkc core::load ffm.so
chunkc core::load blur.so
# Apps rules
# chunkc tiling::rule --owner \"System Preferences\" --state tile
# chunkc tiling::rule --owner Finder --name Copy --state float
# chunkc tiling::rule --owner Finder --state float
# chunkc tiling::rule --owner Transmission --state float
# chunkc tiling::rule --owner iBooks --state float
# chunkc tiling::rule --owner \"App Store\" --state float
# chunkc tiling::rule --owner \"Alfred Preferences\" --state float
# chunkc tiling::rule --owner Python --state float