-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarabiner-rule.json
56 lines (56 loc) · 1.3 KB
/
karabiner-rule.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
{
"title": "Change keyboard layout on cmd press",
"rules": [
{
"description": "Change input source to SJKL (RU) by left_command; SJKL (EN) by right_command.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_command",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_command"
}
],
"to_if_alone": [
{
"select_input_source": {
"input_source_id": "^org.sil.ukelele.keyboardlayout.StipJeyKeyboardLayout.russian—sjkl$"
}
}
]
},
{
"type": "basic",
"from": {
"key_code": "right_command",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_command"
}
],
"to_if_alone": [
{
"select_input_source": {
"input_source_id": "^org.sil.ukelele.keyboardlayout.StipJeyKeyboardLayout.english—sjkl$"
}
}
]
}
]
}
]
}