Last active
January 15, 2025 10:55
-
-
Save david-zw-liu/1ecebafb9f4ee6b6b495a845b17b46c7 to your computer and use it in GitHub Desktop.
[karabiner] Volume keys to Volume keys with Ctrl + Option
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": "Volume keys to Volume keys with Ctrl + Option", | |
"manipulators": [ | |
{ | |
"from": { "key_code": "f11" }, | |
"to": [ | |
{ | |
"key_code": "volume_decrement", | |
"modifiers": ["left_shift", "left_option"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { "consumer_key_code": "volume_decrement" }, | |
"to": [ | |
{ | |
"key_code": "volume_decrement", | |
"modifiers": ["left_shift", "left_option"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { "consumer_key_code": "volume_increment" }, | |
"to": [ | |
{ | |
"key_code": "volume_increment", | |
"modifiers": ["left_shift", "left_option"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { "key_code": "f12" }, | |
"to": [ | |
{ | |
"key_code": "volume_increment", | |
"modifiers": ["left_shift", "left_option"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment