Skip to content

Instantly share code, notes, and snippets.

@holehan
Created October 17, 2019 19:26
Show Gist options
  • Save holehan/22d97a92cbfe369da09866ca63b91ddb to your computer and use it in GitHub Desktop.
Save holehan/22d97a92cbfe369da09866ca63b91ddb to your computer and use it in GitHub Desktop.
Hyper key for mac with karabiner elements
{
"profiles": [
{
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change caps_lock to command+control+option+shift.",
"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": "spacebar",
"modifiers": ["left_command"]
}
],
"type": "basic"
}
]
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment