Created
July 19, 2024 13:21
-
-
Save NeighNeighNeigh/544d7dabf0f47036c1b2bbc345ce8477 to your computer and use it in GitHub Desktop.
Karabiner Elements - Hyper Key Implementation for Alfred
This file contains 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": "Hyper key implementation", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock" | |
}, | |
"to": [ | |
{ | |
"key_code": "left_option", | |
"modifiers": [ | |
"left_command", | |
"left_control", | |
"left_shift" | |
] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "spacebar", | |
"modifiers": [ | |
"left_command", | |
"left_control", | |
"left_option", | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment