forked from mxstbr/karabiner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperKeyRules.ts
332 lines (318 loc) · 8.91 KB
/
hyperKeyRules.ts
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
import { KeyCode, Manipulator, KarabinerRules, LayerCommand } from "./types";
import { rectangle, app, open, shell } from "./utils";
type HyperKeySublayer = {
// The ? is necessary, otherwise we'd have to define something for _every_ key code
[key_code in KeyCode]?: LayerCommand;
};
const HYPER_KEY: KarabinerRules = {
description: "Hyper Key (⌃⌥⇧⌘)",
manipulators: [
{
description: "Caps Lock -> Hyper Key",
from: {
key_code: "caps_lock",
modifiers: {
optional: ["any"],
},
},
to: [
{
set_variable: {
name: "hyper",
value: 1,
},
},
],
to_after_key_up: [
{
set_variable: {
name: "hyper",
value: 0,
},
},
],
to_if_alone: [
{
key_code: "escape",
},
],
type: "basic",
},
],
};
function generateSubLayerVariableName(key: KeyCode) {
return `hyper_sublayer_${key}`;
}
/**
* Create a Hyper Key sublayer, where every command is prefixed with a key
* e.g. Hyper + O ("Open") is the "open applications" layer, I can press
* e.g. Hyper + O + G ("Google Chrome") to open Chrome
*/
function createHyperSubLayer(
sublayer_key: KeyCode,
commands: HyperKeySublayer,
allSubLayerVariables: string[]
): Manipulator[] {
const subLayerVariableName = generateSubLayerVariableName(sublayer_key);
return [
// When Hyper + sublayer_key is pressed, set the variable to 1; on key_up, set it to 0 again
{
description: `Toggle Hyper sublayer ${sublayer_key}`,
type: "basic",
from: {
key_code: sublayer_key,
modifiers: {
optional: ["any"],
},
},
to_after_key_up: [
{
set_variable: {
name: subLayerVariableName,
// The default value of a variable is 0: https://karabiner-elements.pqrs.org/docs/json/complex-modifications-manipulator-definition/conditions/variable/
// That means by using 0 and 1 we can filter for "0" in the conditions below and it'll work on startup
value: 0,
},
},
],
to: [
{
set_variable: {
name: subLayerVariableName,
value: 1,
},
},
],
// This enables us to press other sublayer keys in the current sublayer
// (e.g. Hyper + O > M even though Hyper + M is also a sublayer)
// basically, only trigger a sublayer if no other sublayer is active
conditions: [
...allSubLayerVariables
.filter(
(subLayerVariable) => subLayerVariable !== subLayerVariableName
)
.map((subLayerVariable) => ({
type: "variable_if" as const,
name: subLayerVariable,
value: 0,
})),
{
type: "variable_if",
name: "hyper",
value: 1,
},
],
},
// Define the individual commands that are meant to trigger in the sublayer
...(Object.keys(commands) as (keyof typeof commands)[]).map(
(command_key): Manipulator => ({
...commands[command_key],
type: "basic" as const,
from: {
key_code: command_key,
modifiers: {
optional: ["any"],
},
},
// Only trigger this command if the variable is 1 (i.e., if Hyper + sublayer is held)
conditions: [
{
type: "variable_if",
name: subLayerVariableName,
value: 1,
},
],
})
),
];
}
/**
* Create all hyper sublayers. This needs to be a single function, as well need to
* have all the hyper variable names in order to filter them and make sure only one
* activates at a time
*/
function createHyperSubLayers(subLayers: {
[key_code in KeyCode]?: HyperKeySublayer | LayerCommand;
}): KarabinerRules[] {
const allSubLayerVariables = (
Object.keys(subLayers) as (keyof typeof subLayers)[]
).map((sublayer_key) => generateSubLayerVariableName(sublayer_key));
return Object.entries(subLayers).map(([key, value]) =>
"to" in value
? {
description: `Hyper Key + ${key}`,
manipulators: [
{
...value,
type: "basic" as const,
from: {
key_code: key as KeyCode,
modifiers: {
optional: ["any"],
},
},
conditions: [
{
type: "variable_if",
name: "hyper",
value: 1,
},
...allSubLayerVariables.map((subLayerVariable) => ({
type: "variable_if" as const,
name: subLayerVariable,
value: 0,
})),
],
},
],
}
: {
description: `Hyper Key sublayer "${key}"`,
manipulators: createHyperSubLayer(
key as KeyCode,
value,
allSubLayerVariables
),
}
);
}
export function createHyperKeyRules(): KarabinerRules[] {
return [
HYPER_KEY,
...createHyperSubLayers({
// spacebar: open(
// "raycast://extensions/stellate/mxstbr-commands/create-notion-todo"
// ),
// b = "B"rowse
b: {
y: open("https://youtube.com"),
f: open("https://facebook.com"),
r: open("https://reddit.com"),
},
// e = "opEn" applications
e: {
k: app("Google Chrome"),
u: app("Microsoft Outlook"),
n: app("Skype"),
f: app("Finder"),
j: app("/Applications/Alacritty"),
b: app("Messenger"),
p: app("IntelliJ IDEA Ultimate"),
m: app("Webex"),
},
// w = "Window" via rectangle.app
w: {
semicolon: {
description: "Window: Hide",
to: [
{
key_code: "h",
modifiers: ["right_command"],
},
],
},
y: rectangle("previous-display"),
o: rectangle("next-display"),
k: rectangle("top-half"),
j: rectangle("bottom-half"),
h: rectangle("left-half"),
l: rectangle("right-half"),
f: rectangle("maximize"),
u: {
description: "Window: Previous Tab",
to: [
{
key_code: "tab",
modifiers: ["right_control", "right_shift"],
},
],
},
i: {
description: "Window: Next Tab",
to: [
{
key_code: "tab",
modifiers: ["right_control"],
},
],
},
n: {
description: "Window: Next Window",
to: [
{
key_code: "grave_accent_and_tilde",
modifiers: ["right_command"],
},
],
},
// moving window back and forth
// b: {
// description: "Window: Back",
// to: [
// {
// key_code: "open_bracket",
// modifiers: ["right_command"],
// },
// ],
// },
// m: {
// description: "Window: Forward",
// to: [
// {
// key_code: "close_bracket",
// modifiers: ["right_command"],
// },
// ],
// },
// require CatchMouse to be installed, so that moving mouse to other screen works
// and set ctrl + cmd + p/o to move the mouse
close_bracket: {
description: "Move mouse to the right screen",
to: [
{
key_code: "p",
modifiers: ["right_control", "right_command"],
},
],
},
open_bracket: {
description: "Move mouse to the right screen",
to: [
{
key_code: "o",
modifiers: ["right_control", "right_command"],
},
],
},
},
// s = "System"
s: {
// open preference
c: open("x-apple.systempreferences:com.apple.preference"),
// start recording screen using quicktime player
r: shell`osacript ~/.yadr/osascripts/record.scpt`,
// caPture the screen
u: {
description: "Capture the screen",
to: [
{
key_code: "4",
modifiers: ["right_shift", "right_command"],
},
],
},
},
// iterm manipulation
r: {
// open and focus
i: app("/Applications/iTerm2"),
k: shell`pkill -f "/Applications/iTerm2.app"`,
// quickly select and execute frequently using command on the opening iterm2
y: shell`~/.yadr/bin/iterm2 ycmd`,
m: shell`~/.yadr/bin/iterm2 ~/.yadr/bin/rofi-beats`,
n: shell`~/.yadr/bin/iterm2 ~/.yadr/bin/app-launch`,
u: shell`~/.yadr/bin/iterm2 ~/.yadr/bin/command-launch`,
},
}),
];
}