Skip to content

Instantly share code, notes, and snippets.

@jgensler8
Last active February 6, 2019 19:44
Show Gist options
  • Save jgensler8/5d30d61bb59845ba1d6922734d6f3226 to your computer and use it in GitHub Desktop.
Save jgensler8/5d30d61bb59845ba1d6922734d6f3226 to your computer and use it in GitHub Desktop.
chunkwm settings
#!/bin/bash
#
# NOTE: any 'chunkc' command that is run from this config file
# that is NOT 'chunkc core::<..>' or 'chunkc set ..'
# MUST be put in the background using &
#
# e.g:
# chunkc tiling::rule --owner Finder --name Copy --state float &
#
#
# NOTE: specify the absolutepath of the file to use for logging.
# 'stdout' or 'stderr' can be used instead of an actual filepath.
#
chunkc core::log_file stdout
#
# 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.
#
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 custom_bar_enabled 0
chunkc set custom_bar_all_monitors 0
chunkc set custom_bar_offset_top 22
chunkc set custom_bar_offset_bottom 0
chunkc set custom_bar_offset_left 0
chunkc set custom_bar_offset_right 0
chunkc set global_desktop_mode bsp
chunkc set global_desktop_offset_top 2
chunkc set global_desktop_offset_bottom 2
chunkc set global_desktop_offset_left 2
chunkc set global_desktop_offset_right 2
chunkc set global_desktop_offset_gap 2
#
# NOTE: syntax for desktop-specific settings
#
# chunkc set 2_desktop_mode monocle
# chunkc set 5_desktop_mode float
# chunkc set 3_desktop_offset_top 190
# chunkc set 3_desktop_offset_bottom 190
# chunkc set 3_desktop_offset_left 190
# chunkc set 3_desktop_offset_right 190
# chunkc set 3_desktop_offset_gap 30
#
chunkc set desktop_padding_step_size 10.0
chunkc set desktop_gap_step_size 5.0
chunkc set bsp_spawn_left 1
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 0
chunkc set window_region_locked 1
#chunkc set mouse_move_window \"fn 1\"
#chunkc set mouse_resize_window \"fn 2\"
#chunkc set mouse_motion_interval 35
chunkc set preselect_border_color 0xffd75f5f
chunkc set preselect_border_width 5
#
# NOTE: these settings require 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 0xff00ff00
chunkc set focused_border_width 4
chunkc set focused_border_radius 0
chunkc set focused_border_skip_floating 0
chunkc set focused_border_skip_monocle 0
#
# NOTE: the following are config variables for the chunkwm-ffm plugin.
#
chunkc set ffm_bypass_modifier fn
chunkc set ffm_standby_on_float 1
#
# NOTE: specify plugins to load when chunkwm starts.
#
chunkc core::load border.so
chunkc core::load tiling.so
chunkc core::load ffm.so
#
# NOTE: sample rules for the tiling plugin
#
# chunkc tiling::rule --owner Finder --name Copy --state float &
# chunkc tiling::rule --owner \"App Store\" --state float &
# chunkc tiling::rule --owner Emacs --except "^$" --state tile &
chunkc tiling::rule --owner \"Microsoft Outlook\" --name ".*Reminder.*" --state float%
# focus window
ctrl - j : chunkc tiling::window --focus west
ctrl - l : chunkc tiling::window --focus south
ctrl - k : chunkc tiling::window --focus north
ctrl - 0x29 : chunkc tiling::window --focus east
# swap window
shift + ctrl - j : chunkc tiling::window --swap west
shift + ctrl - l : chunkc tiling::window --swap south
shift + ctrl - k : chunkc tiling::window --swap north
shift + ctrl - 0x29 : chunkc tiling::window --swap east
# move window
# shift + ctrl - j : chunkc tiling::window --warp west
# shift + ctrl - l : chunkc tiling::window --warp south
# shift + ctrl - k : chunkc tiling::window --warp north
# shift + ctrl - 0x29 : chunkc tiling::window --warp east
# send window to desktop
shift + ctrl - 1 : chunkc tiling::window --send-to-desktop 1
shift + ctrl - 2 : chunkc tiling::window --send-to-desktop 2
shift + ctrl - 3 : chunkc tiling::window --send-to-desktop 3
shift + ctrl - 4 : chunkc tiling::window --send-to-desktop 4
shift + ctrl - 5 : chunkc tiling::window --send-to-desktop 5
shift + ctrl - 6 : chunkc tiling::window --send-to-desktop 6
shift + ctrl - 7 : chunkc tiling::window --send-to-desktop 7
shift + ctrl - 8 : chunkc tiling::window --send-to-desktop 8
shift + ctrl - 9 : chunkc tiling::window --send-to-desktop 9
shift + ctrl - 0 : chunkc tiling::window --send-to-desktop 10
# shift + alt - 7 : chunkc tiling::window --send-to-desktop 7
# focus monitor
ctrl + alt - z : chunkc tiling::monitor -f prev
ctrl + alt - c : chunkc tiling::monitor -f next
ctrl + alt - 1 : chunkc tiling::monitor -f 1
ctrl + alt - 2 : chunkc tiling::monitor -f 2
ctrl + alt - 3 : chunkc tiling::monitor -f 3
# send window to monitor and follow focus
ctrl + cmd - z : chunkc tiling::window --send-to-monitor prev; chunkc tiling::monitor -f prev
ctrl + cmd - c : chunkc tiling::window --send-to-monitor next; chunkc tiling::monitor -f next
ctrl + cmd - 1 : chunkc tiling::window --send-to-monitor 1; chunkc tiling::monitor -f 1
ctrl + cmd - 2 : chunkc tiling::window --send-to-monitor 2; chunkc tiling::monitor -f 2
ctrl + cmd - 3 : chunkc tiling::window --send-to-monitor 3; chunkc tiling::monitor -f 3
# increase region size
ctrl - 0x2B : chunkc tiling::window --use-temporary-ratio 0.1 --adjust-window-edge west
shift + alt - s : chunkc tiling::window --use-temporary-ratio 0.1 --adjust-window-edge south
shift + alt - w : chunkc tiling::window --use-temporary-ratio 0.1 --adjust-window-edge north
ctrl - 0x2F : chunkc tiling::window --use-temporary-ratio 0.1 --adjust-window-edge east
# decrease region size
shift + ctrl - 0x2B : chunkc tiling::window --use-temporary-ratio -0.1 --adjust-window-edge west
shift + cmd - s : chunkc tiling::window --use-temporary-ratio -0.1 --adjust-window-edge south
shift + cmd - w : chunkc tiling::window --use-temporary-ratio -0.1 --adjust-window-edge north
shift + ctrl - 0x2F : chunkc tiling::window --use-temporary-ratio -0.1 --adjust-window-edge east
# rotate tree
ctrl - r : chunkc tiling::desktop --rotate 90
# toggle window fullscreen
ctrl - f : chunkc tiling::window --toggle fullscreen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment