Skip to content

Instantly share code, notes, and snippets.

@ronlipke
Created December 10, 2019 06:08
Show Gist options
  • Save ronlipke/483de18a412756ed12042a61f9dc81bb to your computer and use it in GitHub Desktop.
Save ronlipke/483de18a412756ed12042a61f9dc81bb to your computer and use it in GitHub Desktop.
Hyper key config for karabiner
{
"rules": [
{
"manipulators": [
{
"description": "Change caps_lock to command+control+option+shift or escape if alone.",
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"modifiers": [
"left_command",
"left_control",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "escape"
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment