Skip to content

Instantly share code, notes, and snippets.

@BashkaMen
Created April 16, 2025 14:25
Show Gist options
  • Save BashkaMen/84a91c7d44831042848a09a7aac2b9af to your computer and use it in GitHub Desktop.
Save BashkaMen/84a91c7d44831042848a09a7aac2b9af to your computer and use it in GitHub Desktop.
{
"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