-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.ts
191 lines (181 loc) · 5.17 KB
/
utils.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
import { To, KeyCode, Manipulator, KarabinerRules } from "./types";
/**
* Custom way to describe a command in a layer
*/
export interface LayerCommand {
to: To[];
description?: string;
}
type HyperKeySublayer = {
// The ? is necessary, otherwise we'd have to define something for _every_ key code
[key_code in KeyCode]?: LayerCommand;
};
/**
* 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
*/
export 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
*/
export 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
),
}
);
}
function generateSubLayerVariableName(key: KeyCode) {
return `hyper_sublayer_${key}`;
}
/**
* Shortcut for "open" shell command
*/
export function open(what: string): LayerCommand {
return {
to: [
{
shell_command: `open ${what}`,
},
],
description: `Open ${what}`,
};
}
/**
* Shortcut for managing window sizing with Rectangle
*/
export function rectangle(name: string): LayerCommand {
return {
to: [
{
shell_command: `open -g rectangle://execute-action?name=${name}`,
},
],
description: `Window: ${name}`,
};
}
/**
* Shortcut for "Open an app" command (of which there are a bunch)
*/
export function app(name: string): LayerCommand {
return open(`-a '${name}.app'`);
}