Breakaway ya no se mantiene en su sitio web, pero todavía se puede descargar desde Sourceforge. Me he asociado con los siguientes dos AppleScripts para silenciar el altavoz y la pausa de Spotify cuando el enchufe está desconectado, y para jugar Spotify cuando el enchufe está conectado. Siga las instrucciones que aparecen en makeuseof para ver cómo el autor de AppleScript y conectarlo a la Escapada.
jack-desconectado.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-conectado.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