Skip to content

Instantly share code, notes, and snippets.

@metaflow
Last active June 28, 2021 11:32
Show Gist options
  • Save metaflow/10da86565bc20b947211df3278f8d456 to your computer and use it in GitHub Desktop.
Save metaflow/10da86565bc20b947211df3278f8d456 to your computer and use it in GitHub Desktop.
karabiner elements macos switch en/ru/de
{
"title": "switch en/ru/de",
"rules": [
{
"description": "Use alt+shift+4(ru)/5(en)",
"manipulators": [
{
"from": {
"key_code": "5",
"modifiers": {
"mandatory": [
"option",
"left_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"select_input_source": {
"language": "en"
}
}
],
"type": "basic"
},
{
"from": {
"key_code": "4",
"modifiers": {
"mandatory": [
"option",
"left_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"select_input_source": {
"language": "ru"
}
}
],
"type": "basic"
},
{
"from": {
"key_code": "3",
"modifiers": {
"mandatory": [
"option",
"left_shift"
],
"optional": [
"any"
]
}
},
"to": [
{
"select_input_source": {
"language": "de"
}
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment