Skip to content

Instantly share code, notes, and snippets.

@demicuz
Created April 22, 2023 01:56
Show Gist options
  • Save demicuz/79f59c4092b2e8ff5423b2aa656fb9c4 to your computer and use it in GitHub Desktop.
Save demicuz/79f59c4092b2e8ff5423b2aa656fb9c4 to your computer and use it in GitHub Desktop.
{
"title": "Caps Lock to Escape, enable Left Control when held",
"rules": [
{
"description": "Caps Lock to Escape on single press, Left Control on press and hold.",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "escape"
}
],
"to_if_held_down": [
{
"key_code": "left_control"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment