# NOTE(koekeishiya): 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 = 'name of mode' | ',' # # action = '[' ']' | '->' '[' ']' # ':' | '->' ':' # ';' | '->' ';' # # keysym = '-' | # # mod = 'modifier keyword' | '+' # # key = | # # literal = 'single letter or built-in keyword' # # keycode = 'apple keyboard kVK_ values (0x3C)' # # proc_map_lst = * # # proc_map = ':' | '~' | # '*' ':' | '*' '~' # # 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 # # ~ = application is unbound and keypress is forwarded per usual, when specified in a # # NOTE(koekeishiya): A mode is declared according to the following rules: # # mode_decl = '::' '@' ':' | '::' ':' | # '::' '@' | '::' # # 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. # add an on_enter command to the default mode # :: default : chunkc border::color 0xff775759 # # defines a new mode 'test' with an on_enter command, that captures keypresses # :: test @ : chunkc border::color 0xff24ccaa # # from 'default' mode, activate mode 'test' # cmd - x ; test # # from 'test' mode, activate mode 'default' # test < cmd - x ; default # # launch a new terminal instance when in either 'default' or 'test' mode # default, test < cmd - return : open -na /Applications/Terminal.app # application specific bindings # # cmd - n [ # "kitty" : echo "hello kitty" # * : echo "hello everyone" # "qutebrowser" : echo "hello qutebrowser" # "terminal" ~ # "finder" : false # ] # specify a file that should be included as an additional config-file. # treated as an absolutepath if the filename begins with '/' otherwise # the file is relative to the path of the config-file it was loaded from. # # .load "/Users/Koe/.config/partial_skhdrc" # .load "partial_skhdrc" # prevent skhd from monitoring events for specific applications. # # .blacklist [ # "kitty" # "terminal" # "qutebrowser" # ] # open terminal, blazingly fast compared to iTerm/Hyper shift + alt - return : /Applications/kitty.app/Contents/MacOS/kitty --single-instance -d ~ # open qutebrowser # cmd + shift - return : ~/Scripts/qtb.sh # open mpv # cmd - m : open -na /Applications/mpv.app $(pbpaste) # 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 managed 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 managed window shift + ctrl + alt - h : yabai -m window --warp west shift + ctrl + alt - j : yabai -m window --warp south shift + ctrl + alt - k : yabai -m window --warp north shift + ctrl + alt - l : yabai -m window --warp east # balance size of windows shift + ctrl + 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 shift + alt - right : yabai -m window --grid 1:2:1: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(."is-native-fullscreen" == false))[-1].index')" && \ # yabai -m window --space "${index}" && \ # yabai -m space --focus "${index}" # fast focus desktop # cmd + alt - x : yabai -m space --focus recent # cmd + alt - 1 : yabai -m space --focus 1 # send window to desktop and follow focus # shift + cmd - z : yabai -m window --space next; yabai -m space --focus next shift + alt - 1 : yabai -m window --space 1; yabai -m space --focus 1 shift + alt - 2 : yabai -m window --space 2; yabai -m space --focus 2 shift + alt - 3 : yabai -m window --space 3; yabai -m space --focus 3 shift + alt - 4 : yabai -m window --space 4; yabai -m space --focus 4 shift + alt - 5 : yabai -m window --space 5; yabai -m space --focus 5 shift + alt - 6 : yabai -m window --space 6; yabai -m space --focus 6 shift + alt - 7 : yabai -m window --space 7; yabai -m space --focus 7 shift + alt - 8 : yabai -m window --space 8; yabai -m space --focus 8 shift + alt - 9 : yabai -m window --space 9; yabai -m space --focus 9 shift + alt - 0 : yabai -m window --space 10; yabai -m space --focus 10 # focus monitor # ctrl + alt - z : yabai -m display --focus prev shift + ctrl - 1 : yabai -m display --focus 1 shift + ctrl - 2 : yabai -m display --focus 2 shift + ctrl - 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 shift + ctrl + alt - 1 : yabai -m window --display 1; yabai -m display --focus 1 shift + ctrl + alt - 2 : yabai -m window --display 2; yabai -m display --focus 2 shift + ctrl + alt - 3 : yabai -m window --display 3; yabai -m display --focus 3 # 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 - 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 - s : yabai -m window --resize bottom:0:-20 # shift + cmd - w : yabai -m window --resize top:0:20 shift + ctrl+ alt - a : yabai -m window --resize right:-20:0 shift + ctrl+ alt - s : yabai -m window --resize top:0:20 shift + ctrl+ alt - w : yabai -m window --resize bottom:0:-20 shift + ctrl+ alt - d : yabai -m window --resize left: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 # toggle window zoom shift + alt - z : yabai -m window --toggle zoom-parent shift + ctrl + alt - z : yabai -m window --toggle zoom-fullscreen # toggle window split type shift + alt - e : yabai -m window --toggle split # float / unfloat window and center on screen shift + alt - t : yabai -m window --toggle float --grid 4:4:1:1:2:2 # toggle sticky(+float), topmost, picture-in-picture shift + alt - p : yabai -m window --toggle sticky --toggle topmost --toggle pip # rotate tree shift + alt - r : yabai -m space --rotate 90 # mirror tree y-axis shift + alt - y : yabai -m space --mirror y-axis # mirror tree x-axis shift + alt - x : yabai -m space --mirror x-axis