-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskhdrc
173 lines (139 loc) · 9.15 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# open terminal
# cmd - return : ~/scripts/iterm-window.sh # conflicts with intellij, running sql queries
cmd - return : ~/.emacs.d/bin/doom everywhere
# 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
ctrl + alt - h : yabai -m window --swap west
ctrl + alt - j : yabai -m window --swap south
ctrl + alt - k : yabai -m window --swap north
ctrl + alt - l : yabai -m window --swap east
# move window
alt + cmd - h : yabai -m window --warp west && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
alt + cmd - j : yabai -m window --warp south && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
alt + cmd - k : yabai -m window --warp north && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
alt + cmd - l : yabai -m window --warp east && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# 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 - 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}" && \
&& open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# create desktop and follow focus - uses jq for parsing json (brew install jq)
cmd + alt - n : yabai -m space --create && \
index="$(yabai -m query --spaces --display | jq 'map(select(."native-fullscreen" == 0))[-1].index')" && \
yabai -m space --focus "${index}" && \
open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# destroy desktop
cmd + alt - w : yabai -m space --destroy && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# fast focus desktop
cmd + alt - x : yabai -m space --focus recent && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - z : yabai -m space --focus prev && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - c : yabai -m space --focus next && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 1 : yabai -m space --focus 1 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 2 : yabai -m space --focus 2 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 3 : yabai -m space --focus 3 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 4 : yabai -m space --focus 4 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 5 : yabai -m space --focus 5 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 6 : yabai -m space --focus 6 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 7 : yabai -m space --focus 7 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 8 : yabai -m space --focus 8 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 9 : yabai -m space --focus 9 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
cmd + alt - 0 : yabai -m space --focus 10 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# send window to desktop and follow focus
shift + cmd - x : yabai -m window --space recent; yabai -m space --focus recent && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - z : yabai -m window --space prev; yabai -m space --focus prev && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - c : yabai -m window --space next; yabai -m space --focus next && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 1 : yabai -m window --space 1; yabai -m space --focus 1 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 2 : yabai -m window --space 2; yabai -m space --focus 2 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 3 : yabai -m window --space 3; yabai -m space --focus 3 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 4 : yabai -m window --space 4; yabai -m space --focus 4 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 5 : yabai -m window --space 5; yabai -m space --focus 5 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 6 : yabai -m window --space 6; yabai -m space --focus 6 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 7 : yabai -m window --space 7; yabai -m space --focus 7 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 8 : yabai -m window --space 8; yabai -m space --focus 8 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 9 : yabai -m window --space 9; yabai -m space --focus 9 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
shift + cmd - 0 : yabai -m window --space 10; yabai -m space --focus 10 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# focus monitor
ctrl + alt - x : yabai -m display --focus recent && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + alt - z : yabai -m display --focus prev && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + alt - c : yabai -m display --focus next && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + alt - 1 : yabai -m display --focus 1 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + alt - 2 : yabai -m display --focus 2 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + alt - 3 : yabai -m display --focus 3 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# send window to monitor and follow focus
ctrl + cmd - x : yabai -m window --display recent; yabai -m display --focus recent && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + cmd - z : yabai -m window --display prev; yabai -m display --focus prev && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + cmd - c : yabai -m window --display next; yabai -m display --focus next && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + cmd - 1 : yabai -m window --display 1; yabai -m display --focus 1 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + cmd - 2 : yabai -m window --display 2; yabai -m display --focus 2 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
ctrl + cmd - 3 : yabai -m window --display 3; yabai -m display --focus 3 && open -gj 'bitbar://refreshPlugin?name=yabai.1d.sh'
# 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 (show on all spaces)
alt - s : yabai -m window --toggle sticky
# toggle topmost (keep above other windows)
alt - o : yabai -m window --toggle topmost
# toggle sticky(+float), topmost, border and picture-in-picture
alt - p : yabai -m window --toggle sticky;\
yabai -m window --toggle topmost;\
yabai -m window --toggle border;\
yabai -m window --toggle pip
# change layout of desktop
ctrl + alt - a : yabai -m space --layout bsp
ctrl + alt - d : yabai -m space --layout float
# Hard kill apps
ctrl + shift - q : command kill -KILL $(yabai -m query --windows --window | grep pid | cut -d":" -f 2 | cut -d"," -f1)
# Kill window of focused app
# !!Currently does not close windows that are missing title bar(more so the WM buttons)
ctrl - q : yabai -m window --close