Skip to content

Instantly share code, notes, and snippets.

@notiv-nt
Created May 28, 2020 13:58
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 notiv-nt/b601e99579c8c965490f285e9f2715f8 to your computer and use it in GitHub Desktop.
Save notiv-nt/b601e99579c8c965490f285e9f2715f8 to your computer and use it in GitHub Desktop.
Karabiner-Elements Remap capslock to control-option-7
{
"title": "Change caps_lock key to control-option-7",
"rules": [
{
"description": "Change caps_lock key to control-option-7",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "caps_lock"
},
"to": [
{
"repeat": false,
"key_code": "7",
"modifiers": [
"left_alt",
"left_control"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment