Breakaway ya no se mantiene en su sitio web, pero aún puede ser descargado desde Sourceforge . Lo he asociado con los siguientes dos AppleScripts para silenciar el altavoz y pausar Spotify cuando se desconecta la toma, y para reproducir Spotify cuando la toma está conectada. Siga las instrucciones de en makeuseof para ver cómo crear AppleScript y conectarlo a Breakaway.
jack-disconnected.scpt
set volume output volume 0
tell application "System Events"
set MyList to (name of every process)
end tell
if (MyList contains "Spotify") is true then
tell application "Spotify" to pause
end if
jack-connected.scpt
tell application "System Events"
set MyList to (name of every process)
end tell
if (MyList contains "Spotify") is true then
tell application "Spotify"
if player state is paused then play
end tell
end if