Skip to content

Instantly share code, notes, and snippets.

@kolyambo
Forked from rtm-ctrlz/CmdShiftLanguages.json
Last active November 30, 2023 16:46
Show Gist options
  • Save kolyambo/345b3fa9f5463f136e880e4166636123 to your computer and use it in GitHub Desktop.
Save kolyambo/345b3fa9f5463f136e880e4166636123 to your computer and use it in GitHub Desktop.
{
"title": "Language toggler",
"rules": [
{
"description": "Left_Shift+Left_Command language toggle (en->ru->en...)",
"manipulators": [
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "en"
}
]
}
],
"type": "basic",
"from": {
"key_code": "left_shift",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"select_input_source": {
"language": "ru"
}
}
]
},
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "ru"
}
]
}
],
"type": "basic",
"from": {
"key_code": "left_shift",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"select_input_source": {
"language": "en"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment