Last active
June 24, 2025 19:43
-
-
Save pythoninthegrass/581a62b1c3927e20b123f1c98732c100 to your computer and use it in GitHub Desktop.
Use karabiner to remap media keys for YouTube Music Desktop (ytmdesktop) on macOS
This file contains hidden or 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": "Remap media keys for YouTube Music Desktop (ytmdesktop)", | |
"manipulators": [ | |
{ | |
"from": { "consumer_key_code": "play_or_pause" }, | |
"to": [ | |
{ | |
"key_code": "p", | |
"modifiers": ["command", "option", "shift"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { "consumer_key_code": "scan_previous_track" }, | |
"to": [ | |
{ | |
"key_code": "right_arrow", | |
"modifiers": ["command", "option", "shift"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { "consumer_key_code": "scan_next_track" }, | |
"to": [ | |
{ | |
"key_code": "left_arrow", | |
"modifiers": ["command", "option", "shift"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Author
pythoninthegrass
commented
Jun 24, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment