Created
April 16, 2025 14:25
-
-
Save BashkaMen/84a91c7d44831042848a09a7aac2b9af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description": "Capslock: short press toggles language, hold or with modifiers acts as command+control+option+shift", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"input_sources": [{ "language": "en" }], | |
"type": "input_source_if" | |
} | |
], | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { "optional": ["any"] } | |
}, | |
"to": [ | |
{ | |
"key_code": "left_shift", | |
"modifiers": ["left_command", "left_control", "left_option"] | |
} | |
], | |
"to_if_alone": [{ "select_input_source": { "language": "ru" } }], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"input_sources": [{ "language": "ru" }], | |
"type": "input_source_if" | |
} | |
], | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { "optional": ["any"] } | |
}, | |
"to": [ | |
{ | |
"key_code": "left_shift", | |
"modifiers": ["left_command", "left_control", "left_option"] | |
} | |
], | |
"to_if_alone": [{ "select_input_source": { "language": "en" } }], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment