Created
December 10, 2022 04:39
-
-
Save aghouseh/d1ebf881f0cd9a9c7b06bbddd3873d8c to your computer and use it in GitHub Desktop.
Fn to Hyper - complex modification for Karabiner-Elements
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
{ | |
"title": "Fn Key → Hyper Key (⌃⌥⇧⌘)", | |
"rules": [ | |
{ | |
"description": "Fn Key → Hyper Key (⌃⌥⇧⌘)", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "fn", | |
"modifiers": { | |
"optional": [ | |
"caps_lock" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_shift", | |
"modifiers": [ | |
"left_command", | |
"left_control", | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment