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
|
{
"global": { "show_in_menu_bar": false },
"profiles": [
{
"complex_modifications": {
"rules": [
{
"description": "Disable Control + Left Click",
"manipulators": [
{
"from": {
"modifiers": {
"mandatory": ["control"],
"optional": ["any"]
},
"pointing_button": "button1"
},
"to": [{ "pointing_button": "button1" }],
"type": "basic"
}
]
},
{
"description": "Change caps_lock to Hyper Key (⌃⌥⇧⌘)",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": { "optional": ["any"] }
},
"to": [
{
"key_code": "left_shift",
"modifiers": ["left_command", "left_control", "left_option"]
}
],
"to_if_alone": [{ "key_code": "escape" }],
"type": "basic"
}
]
},
{
"description": "Hyper+q -> left_control+s",
"manipulators": [
{
"from": {
"key_code": "q",
"modifiers": { "mandatory": ["left_option", "left_control", "left_shift", "left_command"] }
},
"to": [
{
"key_code": "s",
"modifiers": ["left_control"]
}
],
"type": "basic"
}
]
}
]
},
"devices": [
{
"identifiers": {
"is_keyboard": true,
"product_id": 53297,
"vendor_id": 13364
},
"ignore": true
},
{
"identifiers": {
"is_keyboard": true,
"product_id": 166,
"vendor_id": 5426
},
"ignore": true
}
],
"virtual_hid_keyboard": { "keyboard_type_v2": "ansi" }
}
]
}
|