Breakaway n'est plus maintenu sur son site web, mais il peut toujours être téléchargé depuis Sourceforge. Je l'ai associé aux deux AppleScripts suivants pour mettre en sourdine le haut-parleur et mettre en pause Spotify lorsque le jack est débranché, et pour jouer Spotify lorsque le jack est connecté. Suivez les instructions sur makeuseof pour savoir comment créer un AppleScript et le connecter à 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
0 votes
Aussi, Paramètres sensibles au contexte via symonds.id.au/marcopolo