Skip to content

Instantly share code, notes, and snippets.

@clintharrison
Created January 29, 2021 05:50
Show Gist options
  • Save clintharrison/baf20088c37cc60b9561ea2ac0575563 to your computer and use it in GitHub Desktop.
Save clintharrison/baf20088c37cc60b9561ea2ac0575563 to your computer and use it in GitHub Desktop.
{
"title": "clint's karabiner caps lock",
"rules": [
{
"description": "caps lock if-alone esc, otherwise ctrl, shift-caps for original behavior",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"mandatory": [
"shift"
],
"optional": [
"caps_lock"
]
}
},
"to": [
{
"key_code": "caps_lock"
}
]
},
{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"lazy": true
}
],
"to_if_alone": [
{
"key_code": "escape"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment