Skip to content

Instantly share code, notes, and snippets.

@reorx
Created May 11, 2022 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reorx/fd2be185693362a019fd73cfdaa69f5f to your computer and use it in GitHub Desktop.
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
{
"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