song: Fix Exaile

This commit is contained in:
Michael Straube 2019-12-25 17:43:12 +01:00
parent 684d4e881a
commit 408d3ae5ea
1 changed files with 6 additions and 3 deletions

View File

@ -2672,9 +2672,12 @@ get_song() {
"exaile"*)
# NOTE: Exaile >= 4.0.0 will support mpris2.
song="$(dbus-send --print-reply --dest=org.exaile.Exaile /org/exaile/Exaile \
org.exaile.Exaile.Query |
awk -F':|,' '{if ($6 && $8 && $4) printf $6 "\n" $8 "\n" $4}')"
song="$(dbus-send --print-reply --dest=org.exaile.Exaile \
/org/exaile/Exaile org.exaile.Exaile.Query |
awk -F ':' '{sub(",[^,]*$", "", $3); t=$3;
sub(",[^,]*$", "", $4); a=$4;
sub(",[^,]*$", "", $5); b=$5}
END {print a "\n" b "\n" t}')"
;;
"muine"*)