Merge pull request #1381 from arisinfenix/exaile

Fix Exaile song query and remove redundant trim
This commit is contained in:
dylan 2019-12-25 22:39:48 +00:00 committed by GitHub
commit cd3af75e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

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