-
Notifications
You must be signed in to change notification settings - Fork 0
/
personal_karabiner_rules.json
54 lines (54 loc) · 1.27 KB
/
personal_karabiner_rules.json
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
{
"url_use_to_import_but_remove_from_this_first":"karabiner://karabiner/assets/complex_modifications/import?url=file%3A%2F%2F%2FUsers%2Flilli%2FDocuments%2FCommonFiles%2Fpersonal_karabiner_rules.json"
"title": "Personal Rules v1.1",
"rules": [
{
"description": "Disable Command+H from hiding applications by sending Option+H",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"command"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "h",
"modifiers": [
"option"
]
}
]
}
]
},
{
"description": "Remap num_lock to Control+Option+Command+C to open Calculator app",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "keypad_num_lock"
},
"to": [
{
"key_code": "c",
"modifiers": [
"option",
"command",
"control"
]
}
]
}
]
}
]
}