Created
May 28, 2020 13:58
-
-
Save notiv-nt/b601e99579c8c965490f285e9f2715f8 to your computer and use it in GitHub Desktop.
Karabiner-Elements Remap capslock to control-option-7
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": "Change caps_lock key to control-option-7", | |
"rules": [ | |
{ | |
"description": "Change caps_lock key to control-option-7", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "caps_lock" | |
}, | |
"to": [ | |
{ | |
"repeat": false, | |
"key_code": "7", | |
"modifiers": [ | |
"left_alt", | |
"left_control" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment