Merge pull request #249 from williamkray/cmus-noartistsort

prevent 'tag artistsort' from showing up in song title
This commit is contained in:
Dylan Araps
2016-05-16 19:08:25 +10:00

View File

@@ -1441,7 +1441,7 @@ getsong () {
state=$(mpc | awk -F '\\[|\\]' '/\[/ {printf $2}' 2>/dev/null)
elif [ -n "$(ps x | awk '!(/awk/) && /cmus/')" ]; then
song="$(cmus-remote -Q | grep "tag artist\|title" 2>/dev/null)"
song="$(cmus-remote -Q | grep "tag artist \|title" 2>/dev/null)"
song=${song/tag artist }
song=${song/tag title/-}
song=${song//[[:space:]]/ }