Skip to content

Instantly share code, notes, and snippets.

@zvuc
Created February 5, 2021 14:27
Show Gist options
  • Save zvuc/5c6936875f38517776703aeabd58c1e6 to your computer and use it in GitHub Desktop.
Save zvuc/5c6936875f38517776703aeabd58c1e6 to your computer and use it in GitHub Desktop.
[Karabiner] KO-EN Fast Switcher
{
"title": "Kor-Eng Fast Switcher (Caps Lock)",
"rules": [
{
"description": "Kor ↔︎ Eng (Disabled default Caps Lock behavior)",
"manipulators": [
{
"type": "basic",
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"input_source_id": "^com\\.apple\\.inputmethod\\.Korean"
}
]
}
],
"from": {
"key_code": "caps_lock"
},
"to": [
{
"key_code": "vk_none"
},
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.keylayout\\.ABC"
}
}
]
},
{
"type": "basic",
"conditions": [
{
"type": "input_source_if",
"input_sources": [
{
"input_source_id": "^com\\.apple\\.keylayout\\.ABC"
}
]
}
],
"from": {
"key_code": "caps_lock"
},
"to": [
{
"key_code": "vk_none"
},
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.keylayout\\.ABC"
}
},
{
"select_input_source": {
"input_source_id": "^com\\.apple\\.inputmethod\\.Korean"
}
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment