-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarabiner.json
More file actions
54 lines (54 loc) · 2 KB
/
karabiner.json
File metadata and controls
54 lines (54 loc) · 2 KB
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
{
"profiles": [
{
"complex_modifications": {
"rules": [
{
"description": "shift+caps_lock->caps_lock; caps_lock+[...keys] -> control+[..keys]; caps_lock -> escape",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": ["shift"],
"optional": ["caps_lock"]
}
},
"to": [{ "key_code": "caps_lock" }],
"type": "basic"
},
{
"from": {
"key_code": "caps_lock",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_control" }],
"to_if_alone": [{ "key_code": "escape" }],
"type": "basic"
}
]
}
]
},
"devices": [
{
"identifiers": {
"is_keyboard": true,
"is_pointing_device": true,
"product_id": 20992,
"vendor_id": 11720
},
"ignore": false,
"treat_as_built_in_keyboard": true
}
],
"name": "Coding",
"selected": true,
"virtual_hid_keyboard": { "keyboard_type_v2": "ansi" }
},
{
"name": "Default",
"virtual_hid_keyboard": { "keyboard_type_v2": "ansi" }
}
]
}