Skip to content

Instantly share code, notes, and snippets.

@NigelThorne
Forked from ttscoff/karabiner.json
Last active June 29, 2020 02:06
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 NigelThorne/ddbf1b283d30c032d2dc786fc7ae6e7e to your computer and use it in GitHub Desktop.
Save NigelThorne/ddbf1b283d30c032d2dc786fc7ae6e7e to your computer and use it in GitHub Desktop.
Karabiner Elements hyper key with escape
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change caps_lock to command+control+option+shift. Escape if no other key used.",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"modifiers": [
"left_command",
"left_control",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "escape"
}
],
"type": "basic"
}
]
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment