It‘s 2026 and apparently surviving an hour of podcasts on macOS Sequoia still requires brutal shell scripting.
Anyone a better idea how to make Apple’s Podcasts app not crash in a spinning wheel of death every time it’s open for more than an hour…?
“wait for queue” → “queue waits for main thread”
#!/bin/bash
APP="Podcasts"
open -a "$APP"
sleep 5
pkill -x "$APP"
sleep 2
open -a "$APP"


