Last active
July 8, 2024 16:44
-
-
Save ricky9667/c5f2ac080ca2b5029be8693587a0bed6 to your computer and use it in GitHub Desktop.
Karabiner Elements: Toggle Chinese English With caps_lock, hyper key if held
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
| { | |
| "description": "Toggle Chinese English With caps_lock, hyper key if held", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { | |
| "optional": [ | |
| "left_control" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "right_shift", | |
| "modifiers": [ | |
| "right_command", | |
| "right_control", | |
| "right_option" | |
| ] | |
| } | |
| ], | |
| "to_if_alone": [ | |
| { | |
| "key_code": "spacebar", | |
| "modifiers": [ | |
| "left_control" | |
| ] | |
| } | |
| ], | |
| "type": "basic" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment