Skip to content

Instantly share code, notes, and snippets.

@daronspence
Created January 13, 2022 07:58
Show Gist options
  • Save daronspence/995249236f88b82677295b4ee9b14a71 to your computer and use it in GitHub Desktop.
Save daronspence/995249236f88b82677295b4ee9b14a71 to your computer and use it in GitHub Desktop.
Hyper Volume
{
"title": "Hyper Volume",
"rules": [
{
"description": "Hyper + Up = Volume Up",
"manipulators": [
{
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"command",
"control",
"option",
"shift"
]
}
},
"to": [
{
"key_code": "volume_increment",
"repeat": true
}
],
"type": "basic"
}
]
},
{
"description": "Hyper + Down = Volume Down",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"command",
"control",
"shift",
"option"
]
},
"key_code": "down_arrow"
},
"to": [
{
"repeat": true,
"key_code": "volume_decrement"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment