Created
February 5, 2021 14:27
-
-
Save zvuc/5c6936875f38517776703aeabd58c1e6 to your computer and use it in GitHub Desktop.
[Karabiner] KO-EN Fast Switcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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