Commit 9537be0e authored by Andrew Titmuss's avatar Andrew Titmuss

changed with new gpmdp function

parent 808821e2
...@@ -1228,9 +1228,9 @@ getsong () { ...@@ -1228,9 +1228,9 @@ getsong () {
;; ;;
esac esac
elif ([ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /Google Play Music Desktop Player/')" ] && [ -n "$(which gpmdp)" ]); then elif [ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /Google Play Music Desktop Player/')" ] && type -p gpmdp >/dev/null 2>&1; then
song="$(gpmdp artist) - $(gpmdp title)" song="$(gpmdp current)"
state="$(gpmdp status)" state="$(gpmdp status)"
elif [ -n "$(ps aux | awk '!(/awk/ || /Helper/) && /iTunes/')" ]; then 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')" song="$(osascript -e 'tell application "iTunes" to artist of current track as string & " - " name of current track as string')"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment