Skip to content

Instantly share code, notes, and snippets.

@MillerApps
Created April 19, 2024 06:07
Show Gist options
  • Save MillerApps/ac8ec045f9c4fd21e829f92f960aa522 to your computer and use it in GitHub Desktop.
Save MillerApps/ac8ec045f9c4fd21e829f92f960aa522 to your computer and use it in GitHub Desktop.
Karabiner Elements HyperKey mapped to Caps Lock
{
"manipulators": [
{
"description": "Change caps_lock to command+control+option+shift.",
"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