Skip to content

Instantly share code, notes, and snippets.

@finlayjn
Created November 1, 2023 00:56
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 finlayjn/9b5023b62089243de76d970ab2a84936 to your computer and use it in GitHub Desktop.
Save finlayjn/9b5023b62089243de76d970ab2a84936 to your computer and use it in GitHub Desktop.
Change volume in small increments using a Windows keyboard volume wheel on macOS
{
"title": "Volume Wheel Adjustment Precision",
"rules": [
{
"description": "Change volume in small increments using a Windows keyboard volume wheel on macOS",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "volume_decrement"
},
"to": [
{
"key_code": "volume_decrement",
"modifiers": ["right_option", "right_shift"]
}
]
},
{
"type": "basic",
"from": {
"key_code": "volume_increment"
},
"to": [
{
"key_code": "volume_increment",
"modifiers": ["right_option", "right_shift"]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment