Skip to content

Instantly share code, notes, and snippets.

@thapakazi
Created July 16, 2024 17:33
Show Gist options
  • Save thapakazi/99a2d20d685cbe9bb45b565ec903f7e8 to your computer and use it in GitHub Desktop.
Save thapakazi/99a2d20d685cbe9bb45b565ec903f7e8 to your computer and use it in GitHub Desktop.
{
"description": "Caps Lock -> LeftCommand+Control+Shift+Option, Caps Lock -> Escape (if held alone for > 500 ms)",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"modifiers": [
"left_option",
"left_command",
"left_control"
]
}
],
"to_if_alone": [
{
"hold_down_milliseconds": 500,
"key_code": "escape"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment