changed with new gpmdp function

This commit is contained in:
Andrew Titmuss 2016-03-25 13:44:15 +11:00
parent 808821e2cd
commit 9537be0e94
1 changed files with 3 additions and 3 deletions

View File

@ -1228,9 +1228,9 @@ getsong () {
;;
esac
elif ([ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /Google Play Music Desktop Player/')" ] && [ -n "$(which gpmdp)" ]); then
song="$(gpmdp artist) - $(gpmdp title)"
state="$(gpmdp status)"
elif [ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /Google Play Music Desktop Player/')" ] && type -p gpmdp >/dev/null 2>&1; then
song="$(gpmdp current)"
state="$(gpmdp status)"
elif [ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /iTunes/')" ]; then
song="$(osascript -e 'tell application "iTunes" to artist of current track as string & " - " name of current track as string')"