Last active
November 26, 2025 07:07
-
-
Save songouyang/60630494c8288b6ddc36710f4209674e to your computer and use it in GitHub Desktop.
karabiner elements 自定义切换输入法规则
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
| { | |
| "global": { | |
| "check_for_updates_on_startup": false, | |
| "show_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "rules": [ | |
| { | |
| "description": "短按left_shift切换中英文", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "left_shift", | |
| "modifiers": { "optional": ["any"] } | |
| }, | |
| "parameters": { | |
| "basic.to_if_alone_timeout_milliseconds": 250, | |
| "basic.to_if_held_down_threshold_milliseconds": 250 | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "left_shift", | |
| "lazy": true | |
| } | |
| ], | |
| "to_if_alone": [ | |
| { | |
| "hold_down_milliseconds": 10, | |
| "key_code": "f18" | |
| } | |
| ], | |
| "to_if_held_down": [{ "key_code": "left_shift" }], | |
| "type": "basic" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "devices": [ | |
| { | |
| "identifiers": { "is_keyboard": true }, | |
| "simple_modifications": [ | |
| { | |
| "from": { "key_code": "caps_lock" }, | |
| "to": [{ "key_code": "left_control" }] | |
| } | |
| ] | |
| } | |
| ], | |
| "name": "Default profile", | |
| "selected": true, | |
| "virtual_hid_keyboard": { "keyboard_type_v2": "ansi" } | |
| } | |
| ] | |
| } |
Author
songouyang
commented
Aug 26, 2022

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment