Last active
October 10, 2024 06:47
-
-
Save loerise/b449d1105f104afe47a6d6c3be103514 to your computer and use it in GitHub Desktop.
Karabiner Hyper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"description": "Hyper", | |
"manipulators": [ | |
{ | |
"from": { "key_code": "caps_lock" }, | |
"to": [ | |
{ | |
"key_code": "right_shift", | |
"modifiers": ["right_command", "right_control", "right_option"] | |
} | |
], | |
"to_if_alone": [ | |
{ | |
"key_code": "spacebar", | |
"modifiers": [ | |
"left_command", | |
"left_control", | |
"left_option", | |
"left_shift" | |
] | |
} | |
], | |
"to_if_held_down": [{ "key_code": "caps_lock" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "spacebar", | |
"modifiers": { | |
"mandatory": [ | |
"right_command", | |
"right_control", | |
"right_option", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [{ "consumer_key_code": "play_or_pause" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "up_arrow", | |
"modifiers": { | |
"mandatory": [ | |
"right_command", | |
"right_control", | |
"right_option", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [{ "key_code": "volume_increment" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "down_arrow", | |
"modifiers": { | |
"mandatory": [ | |
"right_command", | |
"right_control", | |
"right_option", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [{ "key_code": "volume_decrement" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "left_arrow", | |
"modifiers": { | |
"mandatory": [ | |
"right_command", | |
"right_control", | |
"right_option", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [{ "consumer_key_code": "scan_previous_track" }], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "right_arrow", | |
"modifiers": { | |
"mandatory": [ | |
"right_command", | |
"right_control", | |
"right_option", | |
"right_shift" | |
] | |
} | |
}, | |
"to": [{ "consumer_key_code": "scan_next_track" }], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment