Created
June 25, 2017 07:18
-
-
Save vitalybe/e52609e4cad280fc3ee2f9e68ce503f8 to your computer and use it in GitHub Desktop.
Karabiner Elements - CapsLock to hyper/escape
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
{ | |
"global": { | |
"check_for_updates_on_startup": false, | |
"show_in_menu_bar": false, | |
"show_profile_name_in_menu_bar": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { | |
"rules": [ | |
{ | |
"manipulators": [ | |
{ | |
"description": "Change caps lock to hyper/escape", | |
"type": "basic", | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_control", | |
"modifiers": [ | |
"left_command", | |
"left_option", | |
"left_shift" | |
] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "f18" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "Profile", | |
"selected": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"key_code": "f18"
should be"key_code": "escape"
or the title should beCapsLock to hyper/f18
;)