blob: 3b6bc9456e62fef86fca8c4fe837ff1aad03d854 (
plain)
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
|
{
"title": "Bind Option+Tab to Command+Tab ('cycle through applications')",
"rules": [
{
"description": "Bind Option+Tab to Command+Tab",
"manipulators": [
{
"from": {
"key_code": "tab",
"modifiers": {
"mandatory": [
"option"
],
"optional": [
"left_shift"
]
}
},
"to": [
{
"key_code": "tab",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
}
]
}
|