spotify support added

This commit is contained in:
Andrew Titmuss 2016-03-12 18:48:01 +11:00
parent 1616bf1341
commit be2831dc5a
1 changed files with 4 additions and 0 deletions

View File

@ -1143,6 +1143,10 @@ getsong () {
song="$(osascript -e 'tell application "iTunes" to artist of current track as string & " - " name of current track as string')"
state="$(osascript -e 'tell application "iTunes" to player state as string')"
elif [ -n "$(ps aux | awk '!(/awk/) && /spotify/')" ]; then
song="$(osascript -e 'tell application "Spotify" to artist of current track as string & " - " & name of current track as string')"
state="$(osascript -e 'tell application "Spotify" to player state')"
else
song="Unknown"
fi