Skip to content

Instantly share code, notes, and snippets.

@dklanac
Last active June 30, 2025 16:25
Show Gist options
  • Save dklanac/14a3c945d979264e27be9d467b93e273 to your computer and use it in GitHub Desktop.
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).
{
"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