Created
January 9, 2026 11:32
-
-
Save leojofer/467e113e030a66b119d79b151f8d5d59 to your computer and use it in GitHub Desktop.
Karabiner Elements: (Raycast) Hyper Key
This file contains hidden or 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": "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