Created
May 11, 2022 08:38
-
-
Save reorx/fd2be185693362a019fd73cfdaa69f5f to your computer and use it in GitHub Desktop.
karabiner element complex modification to ensure command + space combination could be received by the system
This file contains 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": "command + space commitment", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "space", | |
"modifiers": { | |
"mandatory": [ | |
"left_command" | |
], | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to_if_alone": [ | |
{ | |
"hold_down_milliseconds": 100, | |
"key_code": "space", | |
"modifiers": [ | |
"left_command" | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment