Skip to content

Instantly share code, notes, and snippets.

@aaylward
Created December 14, 2024 01:18
Show Gist options
  • Save aaylward/7f1d8c2856124f620f487ebfb0240845 to your computer and use it in GitHub Desktop.
Save aaylward/7f1d8c2856124f620f487ebfb0240845 to your computer and use it in GitHub Desktop.
{
"description": "Change caps_lock to control if pressed with other keys, to escape if pressed alone.",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": { "optional": ["any"] }
},
"to": [{ "key_code": "left_control" }],
"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