-
Notifications
You must be signed in to change notification settings - Fork 0
/
.skhdrc
executable file
·259 lines (215 loc) · 11.5 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# ################################################################ #
# 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.. #
# ############################################################### #
# Yabai Control
fn - y : brew services restart yabai
fn - q : brew services stop yabai
fn - w : brew services start yabai
# RDP Control
# ===========
# hyper - 1
hyper - 0x12 : ssh 192.168.0.190 '/usr/local/bin/VBoxManage controlvm "Ron" pause' && osascript -e 'quit app "Microsoft Remote Desktop"'
# hyper - 2
hyper - 0x13 : ssh 192.168.0.190 '/usr/local/bin/VBoxManage controlvm "Ron" resume' && open -a "Microsoft Remote Desktop"
# hyper - 3
hyper - 0x14 : ssh 192.168.0.190 '/usr/local/bin/VBoxManage controlvm "Harry" pause' && osascript -e 'quit app "Microsoft Remote Desktop"'
# hyper - 4
hyper - 0x15 : ssh 192.168.0.190 '/usr/local/bin/VBoxManage controlvm "Harry" resume' && open -a "Microsoft Remote Desktop"
# Windows
# =======
# focus window or tmux pane
ctrl - h [
* : yabai -m window --focus west; if [ $? -ne 0 ]; then yabai -m display --focus west; fi
"iTerm2" : if [[ $(tmux display-message -p '#{pane_at_left}') -ne 1 ]]; then tmux select-pane -L; else yabai -m window --focus west; if [ $? -ne 0 ]; then yabai -m display --focus west; fi; fi
]
ctrl - l [
* : yabai -m window --focus east; if [ $? -ne 0 ]; then yabai -m display --focus east; fi
"iTerm2" : if [[ $(tmux display-message -p '#{pane_at_right}') -ne 1 ]]; then tmux select-pane -R; else yabai -m window --focus east; if [ $? -ne 0 ]; then yabai -m display --focus east; fi; fi
]
ctrl - k [
* : yabai -m window --focus north; if [ $? -ne 0 ]; then yabai -m display --focus north; fi
"iTerm2" : if [[ $(tmux display-message -p '#{pane_at_top}') -ne 1 ]]; then tmux select-pane -U; else yabai -m window --focus north; if [ $? -ne 0 ]; then yabai -m display --focus north; fi; fi
# "iTerm2" : if [[ $(tmux display-message -p '#{pane_at_top}') -ne 1 ]]; then tmux if-shell "$is_vim" "send-keys C-k" "select-pane -U"; else yabai -m window --focus north; if [ $? -ne 0 ]; then yabai -m display --focus north; fi; fi
# "iTerm2" : skhd --key "ctrl - k"
]
ctrl - j [
* : yabai -m window --focus south; if [ $? -ne 0 ]; then yabai -m display --focus south; fi
"iTerm2" : if [[ $(tmux display-message -p '#{pane_at_bottom}') -ne 1 ]]; then tmux select-pane -D; else yabai -m window --focus south; if [ $? -ne 0 ]; then yabai -m display --focus south; fi; fi
# "iTerm2" : if [[ $(tmux display-message -p '#{pane_at_bottom}') -ne 1 ]]; then tmux if-shell "$is_vim" "send-keys C-j" "select-pane -D"; else yabai -m window --focus south; if [ $? -ne 0 ]; then yabai -m display --focus south; fi; fi
# "iTerm2" : skhd --key "ctrl - j"
]
# Swap window
ctrl + cmd - l : yabai -m window --swap east
ctrl + cmd - h : yabai -m window --swap west
ctrl + cmd - k : yabai -m window --swap north
ctrl + cmd - j : yabai -m window --swap south
# Warp window
ctrl + alt - l : yabai -m window --warp east; if [ $? -ne 0 ]; then yabai -m window --display east && yabai -m display --focus east; fi
ctrl + alt - h : yabai -m window --warp west; if [ $? -ne 0 ]; then yabai -m window --display west && yabai -m display --focus west; fi
ctrl + alt - k : yabai -m window --warp north; if [ $? -ne 0 ]; then yabai -m window --display north && yabai -m display --focus north; fi
ctrl + alt - j : yabai -m window --warp south; if [ $? -ne 0 ]; then yabai -m window --display south && yabai -m display --focus south; fi
# zoom window
hyper - d : yabai -m window --toggle zoom-parent
hyper - f : yabai -m window --toggle zoom-fullscreen
# increase window size
alt - h : yabai -m window --resize left:-40:0; yabai -m window --resize right:-40:0
alt - l : yabai -m window --resize left:40:0; yabai -m window --resize right:40:0
alt - j : yabai -m window --resize bottom:0:40; yabai -m window --resize top:0:40
alt - k : yabai -m window --resize bottom:0:-40; yabai -m window --resize top:0:-40
# float / unfloat window and center on screen
hyper - t : yabai -m window --toggle float;\
yabai -m window --grid 4:4:1:1:2:2
# remember float setting
# hyper - t : app=$(yabai -m query --windows --window mouse | jq -r '.app') && yabai -m window --toggle float && yabai -m rule --remove $(echo $app | tr ' ' '_')_manage_off || yabai -m rule --add app='$app' label=$(echo $app | tr ' ' '_')_manage_off manage=off && echo "yabai -m rule --add app='$app' label=$(echo $app | tr ' ' '_')_manage_off manage=off" >> ~/.yabairc
# Rotate Tree clockwise/counter-clockwise
hyper - r : yabai -m space --rotate 270
hyper - e : yabai -m space --rotate 90
# toggle window split type
ctrl - space : yabai -m window --toggle split
# Open new terminal window
hyper - n : if [ $(ps aux | grep -v grep | grep -c iTerm2) -eq 0 ]; then open -a iTerm; else osascript ~/.scripts/open_iTerm_window.osascript; fi
# Close iTerm2 window w/ tmux
hyper - w : if [[ $(yabai -m query --windows --window | jq -r '.app') == "iTerm2" ]]; then tmux kill-session && yabai -m window $(yabai -m query --windows --window) --close; fi
# Open Typora w/ Pratt Notes
hyper - p : open /Users/bbraunj/Nextcloud/Documents/Pratt/Pratt_Meeting_Notes.md
# Spaces
# ======
# Focus prev/next space
fn - h : yabai -m space --focus prev
fn - l : yabai -m space --focus next
# Send window to prev/next space and follow focus
fn + cmd - h : yabai -m window --space prev; yabai -m space --focus prev
fn + cmd - l : yabai -m window --space next; yabai -m space --focus next
# Swap space with prev/next space
fn + shift - h : yabai -m space --swap prev
fn + shift - l : yabai -m space --swap next
# Send space to display and follow focus
fn + cmd + shift - h : yabai -m space --display west
fn + cmd + shift - l : yabai -m space --display east
fn + cmd + shift - k : yabai -m space --display north
fn + cmd + shift - j : yabai -m space --display south
# Stacks
# ======
# Toggle foucus on a stack
hyper - return : yabai -m window --focus stack.next || yabai -m window --focus stack.first
# Stack all windows in space
# hyper - *
hyper - 0x1C : yabai -m space --layout stack
# Stack current window with another
hyper - h : window=$(yabai -m query --windows --window | jq -r '.id') && yabai -m window west --stack $window
hyper - l : window=$(yabai -m query --windows --window | jq -r '.id') && yabai -m window east --stack $window
hyper - j : window=$(yabai -m query --windows --window | jq -r '.id') && yabai -m window south --stack $window
hyper - k : window=$(yabai -m query --windows --window | jq -r '.id') && yabai -m window north --stack $window
# Switch back to bsp layout
# hyper - b : yabai -m space --layout bsp
hyper - b : window=$(yabai -m query --windows --window | jq -r '.id') && yabai -m window $window --toggle float && yabai -m window $window --toggle float
# stack next window onto current window
# ================= Unused =================
# 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
# 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 + 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
# set insertion point in focused container
# ctrl + alt - h : yabai -m window --insert west
# toggle sticky(+float), topmost, picture-in-picture
# alt - p : yabai -m window --toggle sticky;\
# yabai -m window --toggle topmost;\
# yabai -m window --toggle pip