Skip to content

Instantly share code, notes, and snippets.

@daniepetrov
Forked from noma4i/ShiftLanguages.json
Created February 19, 2020 08:18
Show Gist options
  • Save daniepetrov/b3367380a03c3fc73995fd638b99efef to your computer and use it in GitHub Desktop.
Save daniepetrov/b3367380a03c3fc73995fd638b99efef to your computer and use it in GitHub Desktop.
{
"title": "Language toggler",
"rules": [
{
"description": "Language toggler on SHIFTS",
"manipulators": [
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"input_source_id": "com.apple.keylayout.Australian"
}
]
}
],
"type": "basic",
"from": {
"key_code": "left_shift"
},
"to": [
{
"key_code": "left_shift",
"lazy": true
}
],
"to_if_alone": [
{
"select_input_source": {
"input_source_id": "com.apple.keylayout.RussianWin"
}
}
]
},
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"input_source_id": "com.apple.keylayout.RussianWin"
}
]
}
],
"type": "basic",
"from": {
"key_code": "right_shift"
},
"to": [
{
"key_code": "right_shift",
"lazy": true
}
],
"to_if_alone": [
{
"select_input_source": {
"input_source_id": "com.apple.keylayout.Australian"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment