-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.skhdrc
71 lines (55 loc) · 2.72 KB
/
.skhdrc
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
# TODO https://github.com/koekeishiya/yabai/issues/725
# 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
alt + shift - h : yabai -m window --swap west
alt + shift - j : yabai -m window --swap south
alt + shift - k : yabai -m window --swap north
alt + shift - l : yabai -m window --swap east
# move managed window
alt + shift + ctrl - h : yabai -m window --warp west
alt + shift + ctrl - j : yabai -m window --warp south
alt + shift + ctrl - k : yabai -m window --warp north
alt + shift + ctrl - l : yabai -m window --warp east
# rotate tree
alt - r : yabai -m space --rotate 90
# toggle window fullscreen zoom
alt - f : yabai -m window --toggle zoom-fullscreen
# toggle padding and gap
alt - g : yabai -m space --toggle padding; yabai -m space --toggle gap
# 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 window split type
alt - e : yabai -m window --toggle split
# balance size of windows
alt + shift - 0 : yabai -m space --balance
# move window and focus desktop
alt + shift - 1 : yabai -m window --space 1; yabai -m space --focus 1
alt + shift - 2 : yabai -m window --space 2; yabai -m space --focus 2
alt + shift - 3 : yabai -m window --space 3; yabai -m space --focus 3
alt + shift - 4 : yabai -m window --space 4; yabai -m space --focus 4
alt + shift - 5 : yabai -m window --space 5; yabai -m space --focus 5
alt + shift - 6 : yabai -m window --space 6; yabai -m space --focus 6
alt + shift - 7 : yabai -m window --space 7; yabai -m space --focus 7
alt + shift - 8 : yabai -m window --space 8; yabai -m space --focus 8
alt + shift - 9 : yabai -m window --space 9; yabai -m space --focus 9
# create desktop, move window and follow focus - uses jq for parsing json (brew install jq)
alt + shift - 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
alt - 0 : yabai -m space --focus recent
# send window to monitor and follow focus
alt + shift - n : yabai -m window --display next; yabai -m display --focus next
alt + shift - p : yabai -m window --display previous; yabai -m display --focus previous
# increase window size
alt + shift - w : yabai -m window --resize top:0:-20
alt + shift - d : yabai -m window --resize left:-20:0
# decrease window size
alt + shift - s : yabai -m window --resize bottom:0:-20
alt + shift - a : yabai -m window --resize top:0:20