Created
November 14, 2022 09:35
-
-
Save martinklepsch/b828f82535581dc10ad8950b6f3490b2 to your computer and use it in GitHub Desktop.
karabiner.json rule to "press" cmd, shift, control and option when pressing caps lock
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": "Change caps_lock to command+control+option+shift.", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { | |
"optional": [ | |
"any" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "left_control", | |
"modifiers": [ | |
"left_command", | |
"left_shift", | |
"left_option" | |
] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment