Skip to content

Instantly share code, notes, and snippets.

@bkudria
Created May 31, 2019 18:21
Show Gist options
  • Save bkudria/e5de9b27188f0bdbe0449152e2b5ad57 to your computer and use it in GitHub Desktop.
Save bkudria/e5de9b27188f0bdbe0449152e2b5ad57 to your computer and use it in GitHub Desktop.
{
"title": "Change caps_lock key (rev 4)",
"rules": [{
"description": "Change caps_lock to control if pressed with other keys, to tab if pressed alone.",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": ["any"]
}
},
"to": [{
"key_code": "left_control"
}],
"to_if_alone": [{
"key_code": "escape"
}]
}]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment