Riproduci automaticamente Spotify quando le cuffie sono collegate

0

Sul mio iPod ho l'attivatore per aprire automaticamente Spotify quando collego le cuffie e vorrei sapere se posso fare una cosa simile su OS X.

Quello che mi piacerebbe è riprodurre automaticamente Spotify se l'applicazione è già aperta, altrimenti, vorrei che Spotify si aprisse automaticamente e quindi riproducesse la musica. Mi piacerebbe anche che interrompesse la musica quando le mie cuffie sono scollegate.

Qualcuno sa se c'è un'applicazione che permette che questo accada?

    
posta iProgram 14.03.2015 - 13:58
fonte

1 risposta

2

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
    
risposta data 21.08.2015 - 19:08
fonte

Leggi altre domande sui tag