-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkarabiner.json
68 lines (68 loc) · 2.62 KB
/
karabiner.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"profiles": [
{
"complex_modifications": {
"rules": [
{
"description": "Left shift short tap to Fn",
"manipulators": [
{
"from": {
"key_code": "left_shift",
"modifiers": {}
},
"to": [
{
"key_code": "left_shift",
"modifiers": []
}
],
"to_if_alone": [
{
"key_code": "fn",
"modifiers": []
}
],
"type": "basic"
}
]
},
{
"description": "command + Esc, Tilde to `",
"manipulators": [
{
"from": {
"key_code": "escape",
"modifiers": { "mandatory": ["command"] }
},
"to": [{ "key_code": "grave_accent_and_tilde" }],
"type": "basic"
}
]
},
{
"description": "shift + Esc, Tilde to ~",
"manipulators": [
{
"from": {
"key_code": "escape",
"modifiers": { "mandatory": ["shift"] }
},
"to": [
{
"key_code": "grave_accent_and_tilde",
"modifiers": ["shift"]
}
],
"type": "basic"
}
]
}
]
},
"name": "Default profile",
"selected": true,
"virtual_hid_keyboard": { "keyboard_type_v2": "ansi" }
}
]
}