Skip to content

Instantly share code, notes, and snippets.

@leojofer
Created January 9, 2026 11:32
Show Gist options
  • Select an option

  • Save leojofer/467e113e030a66b119d79b151f8d5d59 to your computer and use it in GitHub Desktop.

Select an option

Save leojofer/467e113e030a66b119d79b151f8d5d59 to your computer and use it in GitHub Desktop.
Karabiner Elements: (Raycast) Hyper Key
{
"description": "Caps Lock + key → Hyper (Ctrl+Alt+Shift+Cmd) + key",
"manipulators": [
{
"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