Skip to content

Instantly share code, notes, and snippets.

@david-zw-liu
Last active January 15, 2025 10:55
Show Gist options
  • Save david-zw-liu/1ecebafb9f4ee6b6b495a845b17b46c7 to your computer and use it in GitHub Desktop.
Save david-zw-liu/1ecebafb9f4ee6b6b495a845b17b46c7 to your computer and use it in GitHub Desktop.
[karabiner] Volume keys to Volume keys with Ctrl + Option
{
"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