Last active
June 30, 2025 16:25
-
-
Save dklanac/14a3c945d979264e27be9d467b93e273 to your computer and use it in GitHub Desktop.
Karabiner Caps Lock to Escape on single press, Caps Lock on press and hold (with delay).
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
{ | |
"description": "Change Caps Lock to Escape", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { "optional": ["any"] } | |
}, | |
"to": [{ "key_code": "escape" }], | |
"type": "basic" | |
} | |
] | |
} | |
{ | |
"description": "Toggle Caps Lock with Control + Alt + C", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "c", | |
"modifiers": { | |
"mandatory": ["control", "option"], | |
"optional": ["caps_lock"] | |
} | |
}, | |
"to": [{ "key_code": "caps_lock" }], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment