Skip to content

Instantly share code, notes, and snippets.

@knutov
Created April 3, 2018 03:22
Show Gist options
  • Save knutov/ed597881b758058c50d73ac8121d498d to your computer and use it in GitHub Desktop.
Save knutov/ed597881b758058c50d73ac8121d498d 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_if_alone": [
{
"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_if_alone": [
{
"select_input_source": {
"language": "en"
}
}
]
}
]
},
{
"description": "Right_Shift+Right_Command language toggle (en->ru->en...)",
"manipulators": [
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "en"
}
]
}
],
"type": "basic",
"from": {
"key_code": "right_shift",
"modifiers": {
"mandatory": [
"right_command"
]
}
},
"to_if_alone": [
{
"select_input_source": {
"language": "ru"
}
}
]
},
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "ru"
}
]
}
],
"type": "basic",
"from": {
"key_code": "right_shift",
"modifiers": {
"mandatory": [
"right_command"
]
}
},
"to_if_alone": [
{
"select_input_source": {
"language": "en"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment