Skip to content

Instantly share code, notes, and snippets.

@czottmann
Created January 4, 2024 12:30
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 czottmann/42aff0bba49888637a8dde3adc643f4f to your computer and use it in GitHub Desktop.
Save czottmann/42aff0bba49888637a8dde3adc643f4f to your computer and use it in GitHub Desktop.
Karabiner Elements hyper key modifications
{
"description": "caps_lock: hold for ⌃⌥⇧, tap for ⌘T",
"manipulators": [
{
"from": {
"key_code": "caps_lock",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"modifiers": [
"left_control",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "t",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
}
{
"description": "right_option: hold for ⌃⌥⇧, tap for ⌘T",
"manipulators": [
{
"from": {
"key_code": "right_option",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "left_shift",
"modifiers": [
"left_control",
"left_option"
]
}
],
"to_if_alone": [
{
"key_code": "t",
"modifiers": [
"left_command"
]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment