Skip to content

Instantly share code, notes, and snippets.

@povesteam
Forked from kolyambo/CmdShiftLanguages.json
Last active January 17, 2019 19:44
Show Gist options
  • Save povesteam/b702dd53a7a13384ffe1aaab85a49b1a to your computer and use it in GitHub Desktop.
Save povesteam/b702dd53a7a13384ffe1aaab85a49b1a to your computer and use it in GitHub Desktop.
Cycle input language using the Caps Lock key
{
"title": "CAPS language toggler",
"rules": [
{
"description": "CAPS language toggle (en->ro->en...)",
"manipulators": [
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "en"
}
]
}
],
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"select_input_source": {
"language": "ro"
}
}
]
},
{
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"language": "ro"
}
]
}
],
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"select_input_source": {
"language": "en"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment