The editorial argues macOS depends on a shadow workforce of free, open-source tools — Rectangle, AltTab, Karabiner-Elements, BetterDisplay, MusicDecoy — to make a $3,500 laptop function as a professional tool. Apple has structured its platform to absorb this labor without acknowledging it, leaving long-documented annoyances (like the media-key bug since 2015) to be fixed by solo GitHub maintainers.
Submitted the lowtechguys post highlighting a 3KB binary that solves a decade-old annoyance by simply registering as the most recently active media-key consumer and swallowing the keystroke. The framing celebrates the elegance of a minimal, surgical fix over waiting for Apple to act.
Top comments quickly pivoted from MusicDecoy itself to listing the tools every Mac power user installs — Rectangle, AltTab, Karabiner-Elements, BetterDisplay, MonitorControl, Hidden Bar, Stats, Maccy, Ice, Raycast, Amphetamine. The implicit argument is that a fresh macOS install is unusable for professional work without this stack of community patches.
A developer at lowtechguys shipped MusicDecoy — a 3KB Mac app whose entire purpose is to absorb the media key press so the Apple Music app doesn't open. It works by registering itself as the most recently active media-key consumer; macOS routes the play/pause keystroke to it, MusicDecoy does nothing with it, and Apple Music stays asleep. The Hacker News thread hit 614 points, which is roughly four times the score most macOS tweaks get before falling off the front page.
The top comments are not really about MusicDecoy. They're a roll call. Rectangle for window snapping. AltTab for proper command-tab. Karabiner-Elements to remap the keys Apple decided you didn't need. BetterDisplay to make external monitors not look like a screenshot of a screenshot. MonitorControl to adjust brightness on a display that already has a brightness button. Hidden Bar, Stats, Maccy, Ice, Raycast, Amphetamine. Every one of these is a free, open-source patch over a design decision Apple made and refuses to revisit.
The MusicDecoy author wrote it because hitting play/pause on a Bluetooth headset would launch Apple Music even if no audio was playing anywhere. This has been a documented annoyance since at least 2015. Apple has not fixed it. The fix is now a 3KB binary maintained by one person on GitHub.
The story isn't that macOS has rough edges. Every OS does. The story is that macOS has a parallel ecosystem of unpaid contractors whose job is to make a $3,500 laptop behave like a professional tool, and Apple has structured its platform to absorb their labor without acknowledging it exists.
Consider the economics. Rectangle has 27,000 GitHub stars and is maintained primarily by one person. AltTab has 12,000. Karabiner-Elements ships kernel extensions that Apple's own security model makes harder to install with every release — and the maintainer ships updates anyway, for free, because otherwise hundreds of thousands of developers would lose their muscle memory the day they upgrade. The maintainers are doing systems-level engineering against a moving target set by a $3T company, and the payment is GitHub Sponsors money that, in most cases, doesn't cover a Costco membership.
Compare this to Windows or Linux. Windows has its own utility ecosystem (PowerToys, AutoHotKey) but PowerToys is shipped by Microsoft as a sanctioned product. Linux desktop friction is fixed by upstream patches that land in the distribution. On macOS, the patches live in a permanent userland purgatory: signed by individual developers, notarized through Apple's gauntlet, distributed via Homebrew or direct download, and broken by every dot release.
The HN comments are quietly furious about this. One commenter listed twelve utilities they install on every new Mac. Another pointed out that the 'it just works' narrative survives only because these utilities exist — without them, the gap between Apple's marketing and the daily reality of using a Mac for real work would be embarrassing. Apple ships the demo. The community ships the product.
There's also a fragility problem. When one of these maintainers burns out — and they do; the Karabiner author wrote publicly about it years ago — the platform regresses overnight for the people who depend on the utility. There's no SLA. There's no escalation path. If BetterDisplay's author quits tomorrow, thousands of developers lose proper scaling on third-party 4K monitors, and Apple's response will be 'use an Apple Studio Display.'
If you build on macOS — and most developers still do — you should treat your utility stack as production infrastructure. Pin versions. Mirror the source. Sponsor the maintainers. A $5/month GitHub sponsorship to Rectangle's author costs less than an hour of your time setting up window management from scratch the day it breaks.
More practically: assume the patch layer will keep getting harder to install. Apple's security tightening is a slow ratchet — kernel extensions are effectively dead, system extensions are next, and the Endpoint Security entitlements that utilities like Little Snitch and BetterDisplay rely on are gated behind a notarization process that gets stricter every year. Tools that work today may not survive macOS 27.
For teams: write down what utilities your engineers depend on. Audit them the way you'd audit any other dependency. If your developer onboarding doc says 'install Rectangle, AltTab, and Karabiner,' you have a supply chain. Treat it like one.
MusicDecoy will get its 614 points and fade. Another utility will land next month to fix whatever the next dot release breaks. The pattern is now structural: Apple ships a platform with deliberate gaps, a global volunteer corps fills them, and the people who actually use Macs for work pretend this is normal. It is not normal. It is a transfer of labor from a trillion-dollar company to individuals, and it works because the alternative — admitting that the platform isn't as polished as the keynote — is too expensive for Apple to consider.
I still can't believe they killed iTunes. I used to have my entire digital music library in iTunes. Most of that was music I had ripped myself from CD, but I had a handful of albums I bought of iTunes and even some TV shows. When they wholesale abandoned iTunes and deleted from Mac OS in favor
I needed something like this a few months ago. I use my MacBook to run my (musical) keyboard rig for live performances, and use low-latency wireless headphones for monitoring. The headphones have a transmitter dongle that plugs into my laptop, and the dongle sends a "play/pause" comma
It's very sad to see Apple using these lowbrow Microsoft tactics. Press ganging your users into launching your other shit product is brand cannibalism.
I use the built-in `hidutil` utility to remap F3-F9 to my preferred keys.F3/F4 are remapped to the keyboard backlight brightness.F5-F9 are remapped to be plain old function keys.This post has a lot of great info: https://news.ycombinator.com/item?id=35555475This is the mapping I
Top 10 dev stories every morning at 8am UTC. AI-curated. Retro terminal HTML email.
> The app does absolutely no work in the background. It works by simply existing as a running process, thanks to having the same bundle identifier as the Music app.I love clever, low-or-no-code engineering solutions like this. You typically need to understand a systems very deeply to reach this l