Skip to content

Instantly share code, notes, and snippets.

@guilhermemarconi
Created April 21, 2025 17:50
Show Gist options
  • Save guilhermemarconi/f4b823b6e56c32e4a1ba6c8c3f56910c to your computer and use it in GitHub Desktop.
Save guilhermemarconi/f4b823b6e56c32e4a1ba6c8c3f56910c to your computer and use it in GitHub Desktop.
Karabiner
{
"description": "Change caps_lock to left_control if pressed with other keys, change caps_lock to escape if pressed alone.",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "escape"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment