Remove stray backslash

This commit is contained in:
Dylan 2016-03-10 18:48:41 +11:00
parent 5f4c7dead8
commit 1b63672d35
1 changed files with 1 additions and 1 deletions

View File

@ -1094,7 +1094,7 @@ getsong () {
dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 \
org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' |\
awk -F 'string "' '/string|array/ {printf "%s",$2; next}{print ""}' |\
awk -F '"' '/artist|title/ {printf $2 " - "}'\
awk -F '"' '/artist|title/ {printf $2 " - "}'
)"
song=${song% - }
song=${song/'('*}