Il breakaway non viene più mantenuto sul suo sito Web, ma può ancora essere scaricato da Sourceforge . L'ho associato ai seguenti due AppleScript per silenziare l'altoparlante e mettere in pausa Spotify quando il jack è disconnesso, e per riprodurre Spotify quando il jack è collegato. Segui le istruzioni su makeuseof per vedere come creare AppleScript e collegarlo 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