Skip to content

Instantly share code, notes, and snippets.

@martinklepsch
Created November 14, 2022 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinklepsch/b828f82535581dc10ad8950b6f3490b2 to your computer and use it in GitHub Desktop.
Save martinklepsch/b828f82535581dc10ad8950b6f3490b2 to your computer and use it in GitHub Desktop.
karabiner.json rule to "press" cmd, shift, control and option when pressing caps lock
{
"description": "Change caps_lock to command+control+option+shift.",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_control",
"modifiers": [
"left_command",
"left_shift",
"left_option"
]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment