Skip to content

Instantly share code, notes, and snippets.

@bitkris-dev
Created April 17, 2023 13:09
Show Gist options
  • Save bitkris-dev/b5b0e84cc9a64d38c32693c15c64fbb6 to your computer and use it in GitHub Desktop.
Save bitkris-dev/b5b0e84cc9a64d38c32693c15c64fbb6 to your computer and use it in GitHub Desktop.
{
"title": "Media Keys Remapping for YTMDesktop App",
"rules": [
{
"description": "Media Play/Pause => Cmd+Shift+Spacebar",
"manipulators": [
{
"from": {
"key_code": "play_or_pause"
},
"to": [
{
"key_code": "spacebar",
"modifiers": [ "left_command", "left_shift" ]
}
],
"type": "basic"
}
]
},
{
"description": "Media Next Track => Cmd+Shift+PageUp",
"manipulators": [
{
"from": {
"consumer_key_code": "scan_next_track"
},
"to": [
{
"key_code": "page_up",
"modifiers": [ "left_command", "left_shift" ]
}
],
"type": "basic"
}
]
},
{
"description": "Media Prev Track => Cmd+Shift+PageUp",
"manipulators": [
{
"from": {
"consumer_key_code": "scan_previous_track"
},
"to": [
{
"key_code": "page_down",
"modifiers": [ "left_command", "left_shift" ]
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment