Last active
July 27, 2022 02:37
-
-
Save zikosw/dba208bf2cfb2c700be84433733d4139 to your computer and use it in GitHub Desktop.
Yabai config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# open terminal | |
# cmd - return : /Applications/Kitty.app/Contents/MacOS/kitty --single-instance -d ~ | |
# focus window | |
alt - h : yabai -m window --focus west | |
alt - j : yabai -m window --focus south | |
alt - k : yabai -m window --focus north | |
alt - l : yabai -m window --focus east | |
# swap window | |
shift + alt - h : yabai -m window --swap west | |
shift + alt - j : yabai -m window --swap south | |
shift + alt - k : yabai -m window --swap north | |
shift + alt - l : yabai -m window --swap east | |
# move window | |
shift + cmd - h : yabai -m window --warp west | |
shift + cmd - j : yabai -m window --warp south | |
shift + cmd - k : yabai -m window --warp north | |
shift + cmd - l : yabai -m window --warp east | |
# balance size of windows | |
shift + alt - 0 : yabai -m space --balance | |
# make floating window fill screen | |
shift + alt - up : yabai -m window --grid 1:1:0:0:1:1 | |
# make floating window fill left-half of screen | |
shift + alt - left : yabai -m window --grid 1:2:0:0:1:1 | |
# make floating window fill right-half of screen | |
shift + alt - right : yabai -m window --grid 1:2:1:0:1:1 | |
# create desktop, move window and follow focus | |
shift + alt - n : yabai -m space --create;\ | |
id=$(yabai -m query --displays --display | grep "spaces");\ | |
yabai -m window --space $(echo ${id:10:${#id}-10});\ | |
yabai -m space --focus $(echo ${id:10:${#id}-10}) | |
# create desktop and follow focus | |
#cmd + alt - n : yabai -m space --create;\ | |
# id=$(yabai -m query --displays --display | grep "spaces");\ | |
# yabai -m space --focus $(echo ${id:10:${#id}-10}) | |
# destroy desktop | |
#cmd + alt - w : yabai -m space --destroy | |
# fast focus desktop | |
#cmd + alt - x : yabai -m space --focus last | |
#cmd + alt - z : yabai -m space --focus prev | |
#cmd + alt - c : yabai -m space --focus next | |
ctrl - 1 : yabai -m space --focus 2 | |
ctrl - 2 : yabai -m space --focus 3 | |
ctrl - 3 : yabai -m space --focus 4 | |
ctrl - 4 : yabai -m space --focus 5 | |
ctrl - 5 : yabai -m space --focus 6 | |
ctrl - 6 : yabai -m space --focus 7 | |
ctrl - 7 : yabai -m space --focus 8 | |
ctrl - 8 : yabai -m space --focus 9 | |
ctrl - 9 : yabai -m space --focus 10 | |
ctrl - 0 : yabai -m space --focus 11 | |
# send window to desktop and follow focus | |
#shift + cmd - x : yabai -m window --space last; yabai -m space --focus last | |
#shift + cmd - z : yabai -m window --space prev; yabai -m space --focus prev | |
#shift + cmd - c : yabai -m window --space next; yabai -m space --focus next | |
shift + ctrl - 1 : yabai -m window --space 2; yabai -m space --focus 2 | |
shift + ctrl - 2 : yabai -m window --space 3; yabai -m space --focus 3 | |
shift + ctrl - 3 : yabai -m window --space 4; yabai -m space --focus 4 | |
shift + ctrl - 4 : yabai -m window --space 5; yabai -m space --focus 5 | |
shift + ctrl - 5 : yabai -m window --space 6; yabai -m space --focus 6 | |
shift + ctrl - 6 : yabai -m window --space 7; yabai -m space --focus 7 | |
shift + ctrl - 7 : yabai -m window --space 8; yabai -m space --focus 8 | |
shift + ctrl - 8 : yabai -m window --space 9; yabai -m space --focus 9 | |
shift + ctrl - 9 : yabai -m window --space 10; yabai -m space --focus 10 | |
shift + ctrl - 0 : yabai -m window --space 11; yabai -m space --focus 11 | |
# focus monitor | |
#ctrl + alt - x : yabai -m display --focus last | |
#ctrl + alt - z : yabai -m display --focus prev | |
#ctrl + alt - c : yabai -m display --focus next | |
ctrl + alt - 1 : yabai -m display --focus 1 | |
ctrl + alt - 2 : yabai -m display --focus 2 | |
ctrl + alt - 3 : yabai -m display --focus 3 | |
# send window to monitor and follow focus | |
#ctrl + cmd - x : yabai -m window --display last; yabai -m display --focus last | |
#ctrl + cmd - z : yabai -m window --display prev; yabai -m display --focus prev | |
#ctrl + cmd - c : yabai -m window --display next; yabai -m display --focus next | |
ctrl + cmd - 1 : yabai -m window --display 1; yabai -m display --focus 1 | |
ctrl + cmd - 2 : yabai -m window --display 2; yabai -m display --focus 2 | |
ctrl + cmd - 3 : yabai -m window --display 3; yabai -m display --focus 3 | |
# move window | |
shift + ctrl - a : yabai -m window --move rel:-20:0 | |
shift + ctrl - s : yabai -m window --move rel:0:20 | |
shift + ctrl - w : yabai -m window --move rel:0:-20 | |
shift + ctrl - d : yabai -m window --move rel:20:0 | |
# increase window size | |
shift + alt - a : yabai -m window --resize left:-20:0 | |
shift + alt - s : yabai -m window --resize bottom:0:20 | |
shift + alt - w : yabai -m window --resize top:0:-20 | |
shift + alt - d : yabai -m window --resize right:20:0 | |
# decrease window size | |
shift + cmd - a : yabai -m window --resize left:20:0 | |
shift + cmd - s : yabai -m window --resize bottom:0:-20 | |
shift + cmd - w : yabai -m window --resize top:0:20 | |
shift + cmd - d : yabai -m window --resize right:-20:0 | |
# set insertion point in focused container | |
ctrl + alt - h : yabai -m window --insert west | |
ctrl + alt - j : yabai -m window --insert south | |
ctrl + alt - k : yabai -m window --insert north | |
ctrl + alt - l : yabai -m window --insert east | |
# rotate tree | |
alt - r : yabai -m space --rotate 90 | |
# mirror tree y-axis | |
alt - y : yabai -m space --mirror y-axis | |
# mirror tree x-axis | |
alt - x : yabai -m space --mirror x-axis | |
# toggle desktop offset | |
alt - a : yabai -m space --toggle padding; yabai -m space --toggle gap | |
# toggle window parent zoom | |
alt - d : yabai -m window --toggle zoom-parent | |
# toggle window fullscreen zoom | |
alt - f : yabai -m window --toggle zoom-fullscreen | |
# toggle window native fullscreen | |
shift + alt - f : yabai -m window --toggle native-fullscreen | |
# toggle window border | |
shift + alt - b : yabai -m window --toggle border | |
# toggle window split type | |
alt - e : yabai -m window --toggle split | |
# float / unfloat window and center on screen | |
alt - t : yabai -m window --toggle float;\ | |
yabai -m window --grid 4:4:1:1:2:2 | |
# toggle sticky | |
alt - s : yabai -m window --toggle sticky | |
# toggle sticky, float and resize to picture-in-picture size | |
alt - p : yabai -m window --toggle sticky;\ | |
yabai -m window --grid 5:5:4:0:1:1 | |
# change layout of desktop | |
ctrl + alt - a : yabai -m space --layout bsp | |
ctrl + alt - d : yabai -m space --layout float | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ################################################################ # | |
# THE FOLLOWING IS AN EXPLANATION OF THE GRAMMAR THAT SKHD PARSES. # | |
# FOR SIMPLE EXAMPLE MAPPINGS LOOK FURTHER DOWN THIS FILE.. # | |
# ################################################################ # | |
# A list of all built-in modifier and literal keywords can | |
# be found at https://github.com/koekeishiya/skhd/issues/1 | |
# | |
# A hotkey is written according to the following rules: | |
# | |
# hotkey = <mode> '<' <action> | <action> | |
# | |
# mode = 'name of mode' | <mode> ',' <mode> | |
# | |
# action = <keysym> '[' <proc_map_lst> ']' | <keysym> '->' '[' <proc_map_lst> ']' | |
# <keysym> ':' <command> | <keysym> '->' ':' <command> | |
# <keysym> ';' <mode> | <keysym> '->' ';' <mode> | |
# | |
# keysym = <mod> '-' <key> | <key> | |
# | |
# mod = 'modifier keyword' | <mod> '+' <mod> | |
# | |
# key = <literal> | <keycode> | |
# | |
# literal = 'single letter or built-in keyword' | |
# | |
# keycode = 'apple keyboard kVK_<Key> values (0x3C)' | |
# | |
# proc_map_lst = * <proc_map> | |
# | |
# proc_map = <string> ':' <command> | <string> '~' | | |
# '*' ':' <command> | '*' '~' | |
# | |
# string = '"' 'sequence of characters' '"' | |
# | |
# command = command is executed through '$SHELL -c' and | |
# follows valid shell syntax. if the $SHELL environment | |
# variable is not set, it will default to '/bin/bash'. | |
# when bash is used, the ';' delimeter can be specified | |
# to chain commands. | |
# | |
# to allow a command to extend into multiple lines, | |
# prepend '\' at the end of the previous line. | |
# | |
# an EOL character signifies the end of the bind. | |
# | |
# -> = keypress is not consumed by skhd | |
# | |
# * = matches every application not specified in <proc_map_lst> | |
# | |
# ~ = application is unbound and keypress is forwarded per usual, when specified in a <proc_map> | |
# | |
# A mode is declared according to the following rules: | |
# | |
# mode_decl = '::' <name> '@' ':' <command> | '::' <name> ':' <command> | | |
# '::' <name> '@' | '::' <name> | |
# | |
# name = desired name for this mode, | |
# | |
# @ = capture keypresses regardless of being bound to an action | |
# | |
# command = command is executed through '$SHELL -c' and | |
# follows valid shell syntax. if the $SHELL environment | |
# variable is not set, it will default to '/bin/bash'. | |
# when bash is used, the ';' delimeter can be specified | |
# to chain commands. | |
# | |
# to allow a command to extend into multiple lines, | |
# prepend '\' at the end of the previous line. | |
# | |
# an EOL character signifies the end of the bind. | |
# ############################################################### # | |
# THE FOLLOWING SECTION CONTAIN SIMPLE MAPPINGS DEMONSTRATING HOW # | |
# TO INTERACT WITH THE YABAI WM. THESE ARE SUPPOSED TO BE USED AS # | |
# A REFERENCE ONLY, WHEN MAKING YOUR OWN CONFIGURATION.. # | |
# ############################################################### # | |
# focus window | |
# alt - h : yabai -m window --focus west | |
# swap managed window | |
# shift + alt - h : yabai -m window --swap north | |
# move managed window | |
# shift + cmd - h : yabai -m window --warp east | |
# balance size of windows | |
# shift + alt - 0 : yabai -m space --balance | |
# make floating window fill screen | |
# shift + alt - up : yabai -m window --grid 1:1:0:0:1:1 | |
# make floating window fill left-half of screen | |
# shift + alt - left : yabai -m window --grid 1:2:0:0:1:1 | |
# create desktop, move window and follow focus - uses jq for parsing json (brew install jq) | |
# shift + cmd - n : yabai -m space --create && \ | |
# index="$(yabai -m query --spaces --display | jq 'map(select(."native-fullscreen" == 0))[-1].index')" && \ | |
# yabai -m window --space "${index}" && \ | |
# yabai -m space --focus "${index}" | |
# fast focus desktop | |
# cmd + alt - x : yabai -m space --focus recent | |
ctrl - 1 : yabai -m space --focus 1 | |
ctrl - 2 : yabai -m space --focus 2 | |
ctrl - 3 : yabai -m space --focus 3 | |
ctrl - 4 : yabai -m space --focus 4 | |
ctrl - 5 : yabai -m space --focus 5 | |
ctrl - 6 : yabai -m space --focus 6 | |
ctrl - 7 : yabai -m space --focus 7 | |
# send window to desktop | |
ctrl + alt - 1 : yabai -m window --space 1 | |
ctrl + alt - 2 : yabai -m window --space 2 | |
ctrl + alt - 3 : yabai -m window --space 3 | |
ctrl + alt - 4 : yabai -m window --space 4 | |
ctrl + alt - 5 : yabai -m window --space 5 | |
ctrl + alt - 6 : yabai -m window --space 6 | |
ctrl + alt - 7 : yabai -m window --space 7 | |
# send window to desktop and follow focus | |
# shift + cmd - z : yabai -m window --space next; yabai -m space --focus next | |
# shift + cmd - 2 : yabai -m window --space 2; yabai -m space --focus 2 | |
# focus monitor | |
# ctrl + alt - z : yabai -m display --focus prev | |
# ctrl + alt - 3 : yabai -m display --focus 3 | |
# send window to monitor and follow focus | |
# ctrl + cmd - c : yabai -m window --display next; yabai -m display --focus next | |
# ctrl + cmd - 1 : yabai -m window --display 1; yabai -m display --focus 1 | |
# move floating window | |
# shift + ctrl - a : yabai -m window --move rel:-20:0 | |
# shift + ctrl - s : yabai -m window --move rel:0:20 | |
# increase window size | |
# shift + alt - a : yabai -m window --resize left:-20:0 | |
# shift + alt - w : yabai -m window --resize top:0:-20 | |
# decrease window size | |
# shift + cmd - s : yabai -m window --resize bottom:0:-20 | |
# shift + cmd - w : yabai -m window --resize top:0:20 | |
# set insertion point in focused container | |
# ctrl + alt - h : yabai -m window --insert west | |
# toggle window zoom | |
# alt - d : yabai -m window --toggle zoom-parent | |
# alt - f : yabai -m window --toggle zoom-fullscreen | |
# toggle window split type | |
# alt - e : yabai -m window --toggle split | |
# float / unfloat window and center on screen | |
# alt - t : yabai -m window --toggle float;\ | |
# yabai -m window --grid 4:4:1:1:2:2 | |
# toggle sticky(+float), topmost, picture-in-picture | |
# alt - p : yabai -m window --toggle sticky;\ | |
# yabai -m window --toggle topmost;\ | |
# yabai -m window --toggle pip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# bar settings | |
yabai -m config status_bar off | |
yabai -m config status_bar_text_font "Helvetica Neue:Bold:12.0" | |
yabai -m config status_bar_icon_font "Hack Nerd Font:Regular:12.0" | |
yabai -m config status_bar_background_color 0xff202020 | |
yabai -m config status_bar_foreground_color 0xffa8a8a8 | |
yabai -m config status_bar_space_icon_strip I II III IV V VI VII VIII IX X | |
yabai -m config status_bar_power_icon_strip | |
yabai -m config status_bar_space_icon | |
yabai -m config status_bar_clock_icon | |
# global settings | |
yabai -m config mouse_follows_focus off | |
yabai -m config focus_follows_mouse off | |
yabai -m config window_placement second_child | |
yabai -m config window_topmost on | |
yabai -m config window_opacity off | |
yabai -m config window_opacity_duration 0.0 | |
yabai -m config window_shadow on | |
yabai -m config window_border on | |
yabai -m config window_border_width 2 | |
yabai -m config window_border_placement exterior | |
yabai -m config window_border_radius -0.5 | |
yabai -m config active_window_border_topmost off | |
yabai -m config active_window_border_color 0xffeb8d32 | |
yabai -m config normal_window_border_color 0xff505050 | |
yabai -m config insert_window_border_color 0xffd75f5f | |
yabai -m config active_window_opacity 1.0 | |
yabai -m config normal_window_opacity 0.90 | |
yabai -m config split_ratio 0.50 | |
yabai -m config auto_balance off | |
yabai -m config mouse_modifier fn | |
yabai -m config mouse_action1 move | |
yabai -m config mouse_action2 resize | |
# general space settings | |
yabai -m config layout bsp | |
yabai -m config top_padding 10 | |
yabai -m config bottom_padding 10 | |
yabai -m config left_padding 10 | |
yabai -m config right_padding 10 | |
yabai -m config window_gap 5 | |
# rule | |
# float system preferences | |
yabai -m rule --add app="^System Preferences$" manage=off | |
yabai -m rule --add app="^Simulator$" manage=off | |
# show digital colour meter topmost and on all spaces | |
yabai -m rule --add app="^Digital Colou?r Meter$" sticky=on | |
yabai -m rule --add app="^DBeaver" title="^Choose SQL script for" manage=off | |
yabai -m rule --add app="^DBeaver" title="^Connection .+ configuration$" manage=off | |
# yabai -m rule --add app="^Firefox Developer Edition$" title="^Picture-in-Picture$" sticky=on | |
yabai -m rule --add app="^Firefox Developer Edition$" title="^Opening " manage=off | |
yabai -m rule --add title="^Picture-in-Picture$" sticky=on | |
yabai -m rule --add app="^Google Chrome$" title="^Settings (Incognito)$" manage=off | |
yabai -m rule --add title="^Sign in - Google Accounts" manage=off | |
echo "yabai configuration loaded.." | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# the scripting-addition must be loaded manually if | |
# you are running yabai on macOS Big Sur. Uncomment | |
# the following line to have the injection performed | |
# when the config is executed during startup. | |
# | |
# for this to work you must configure sudo such that | |
# it will be able to run the command without password | |
# | |
# see this wiki page for information: | |
# - https://github.com/koekeishiya/yabai/wiki/Installing-yabai-(latest-release) | |
# | |
# sudo yabai --load-sa | |
# yabai -m signal --add event=dock_did_restart action="sudo yabai --load-sa" | |
# global settings | |
yabai -m config mouse_follows_focus off | |
yabai -m config focus_follows_mouse off | |
yabai -m config window_origin_display default | |
yabai -m config window_placement second_child | |
yabai -m config window_topmost off | |
yabai -m config window_shadow on | |
yabai -m config window_opacity off | |
yabai -m config window_opacity_duration 0.0 | |
yabai -m config active_window_opacity 1.0 | |
yabai -m config normal_window_opacity 0.90 | |
yabai -m config window_border on | |
yabai -m config window_border_width 3 | |
yabai -m config active_window_border_color 0xff3388cc | |
yabai -m config normal_window_border_color 0xff777777 | |
yabai -m config insert_feedback_color 0xffd75f5f | |
yabai -m config split_ratio 0.50 | |
yabai -m config auto_balance off | |
yabai -m config mouse_modifier alt | |
yabai -m config mouse_action1 move | |
yabai -m config mouse_action2 resize | |
yabai -m config mouse_drop_action swap | |
# general space settings | |
yabai -m config layout bsp | |
yabai -m config top_padding 6 | |
yabai -m config bottom_padding 6 | |
yabai -m config left_padding 6 | |
yabai -m config right_padding 6 | |
yabai -m config window_gap 06 | |
# rule | |
# float system preferences | |
yabai -m rule --add app="^System Preferences$" manage=off | |
yabai -m rule --add app="^Simulator$" manage=off | |
# show digital colour meter topmost and on all spaces | |
yabai -m rule --add app="^Digital Colou?r Meter$" sticky=on | |
yabai -m rule --add app="^DBeaver" title="^Choose SQL script for" manage=off | |
yabai -m rule --add app="^DBeaver" title="^Connection .+ configuration$" manage=off | |
yabai -m rule --add app="^DBeaver" title="^Tip of the day" manage=off | |
yabai -m rule --add app="^DBeaver" title="^Choose catalog/schema" manage=off | |
yabai -m rule --add app="^Firefox Nightly$" title="^Opening " manage=off | |
yabai -m rule --add title="^Picture-in-Picture$" sticky=on | |
yabai -m rule --add title="^Sign in - Google Accounts" manage=off | |
echo "yabai configuration loaded.." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment