The post shares a minimal macOS app, Music Decoy, that stops Apple Music from opening when media keys or headphone controls send a play command with no active media session. It works through a neat system-level trick rather than watching for Music and killing it after launch. The app uses the same bundle identifier as Apple Music, so macOS targets the decoy instead. That makes it a very small hack with almost no moving parts.
What landed hardest was not the cleverness but how many people have been annoyed by this exact behavior for years. The common failure mode is not “I pressed play to hear Apple Music.” It is
AirPods or Bluetooth headphones reconnecting to the wrong device, a browser tab failing to expose its paused state, a car or wireless dongle sending an unexpected play event, or a live audio setup suddenly launching Music when silence would have been the only sane response. People described it as attention theft more than a bug because Apple gives no simple way to disable the behavior, choose another default player, or uninstall Music without invasive system changes. That is why the workaround resonated.
A second theme was that Apple Music itself is still usable for local libraries, ripped CDs, smart playlists, and cable sync if you turn off the service features, but the product direction is obvious. People who manage their own files said the app increasingly feels subscription-first and store-first, with local playback treated as leftover compatibility. That spilled into broader complaints about bundled apps, Spotlight surfacing Apple’s tools ahead of user-chosen ones, and macOS generally shifting from polished desktop software toward service upsell behavior. The sharper technical comments pushed the conversation toward better alternatives than brute force. If you want a toggle,
hidutil and
Karabiner can remap the media key. If you want to block Music after the fact, noTunes already does that. If you want the root cause,
rcd, the remote control daemon, can be unloaded with
launchctl, though that is a rougher system tweak. The throughline was clear: the elegant part of Music Decoy is not just that it works, but that it works by understanding macOS’s app resolution model instead of fighting the symptom in a loop.