Song: enforce order artist - title in get_song_dbus()
This commit is contained in:
parent
8e971f8821
commit
e9132ca2cc
3
neofetch
3
neofetch
|
@ -1200,9 +1200,8 @@ get_song() {
|
|||
dbus-send --print-reply --dest=org.mpris.MediaPlayer2."${1}" /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/ {a=$2} /title/ {t=$2} END{print a " - " t}'
|
||||
)"
|
||||
song="${song% - }"
|
||||
}
|
||||
|
||||
case "${player/*\/}" in
|
||||
|
|
Reference in New Issue