prevent 'tag artistsort' from showing up in song title
This commit is contained in:
parent
b6f69aede8
commit
9faeffef12
2
neofetch
2
neofetch
|
@ -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:]]/ }
|
||||
|
|
Reference in New Issue