Created
November 29, 2023 14:30
-
-
Save stphn/6ccbf8fbbd5e419951c15acacc0c2fe7 to your computer and use it in GitHub Desktop.
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
# change window focus within space | |
alt - j : yabai -m window --focus south | |
alt - k : yabai -m window --focus north | |
alt - h : yabai -m window --focus west | |
alt - l : yabai -m window --focus east | |
#change focus between external displays (left and right) | |
alt - s: yabai -m display --focus west | |
alt - g: yabai -m display --focus east | |
# rotate layout clockwise | |
shift + alt - r : yabai -m space --rotate 270 | |
# flip along y-axis | |
shift + alt - y : yabai -m space --mirror y-axis | |
# flip along x-axis | |
shift + alt - x : yabai -m space --mirror x-axis | |
# toggle window float | |
shift + alt - t : yabai -m window --toggle float --grid 4:4:1:1:2:2 | |
# maximize a window | |
shift + alt - m : yabai -m window --toggle zoom-fullscreen | |
# balance out tree of windows (resize to occupy same area) | |
shift + alt - e : yabai -m space --balance | |
# swap windows | |
shift + alt - j : yabai -m window --swap south | |
shift + alt - k : yabai -m window --swap north | |
shift + alt - h : yabai -m window --swap west | |
shift + alt - l : yabai -m window --swap east | |
# move window and split | |
ctrl + alt - j : yabai -m window --warp south | |
ctrl + alt - k : yabai -m window --warp north | |
ctrl + alt - h : yabai -m window --warp west | |
ctrl + alt - l : yabai -m window --warp east | |
# move window to display left and right | |
shift + alt - s : yabai -m window --display west; yabai -m display --focus west; | |
shift + alt - g : yabai -m window --display east; yabai -m display --focus east; | |
#move window to prev and next space | |
shift + alt - p : yabai -m window --space prev; | |
shift + alt - n : yabai -m window --space next; | |
# move window to space # | |
shift + alt - 1 : yabai -m window --space 1; | |
shift + alt - 2 : yabai -m window --space 2; | |
shift + alt - 3 : yabai -m window --space 3; | |
shift + alt - 4 : yabai -m window --space 4; | |
shift + alt - 5 : yabai -m window --space 5; | |
shift + alt - 6 : yabai -m window --space 6; | |
shift + alt - 7 : yabai -m window --space 7; | |
# stop/start/restart yabai | |
ctrl + alt - q : yabai --stop-service | |
ctrl + alt - s : yabai --start-service | |
ctrl + alt - r : yabai --restart-service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment