Commit 8c9b474d authored by Michael Straube's avatar Michael Straube

Song: Fix Exaile song query

parent c25cc146
...@@ -1262,8 +1262,7 @@ get_song() { ...@@ -1262,8 +1262,7 @@ get_song() {
"exaile"*) "exaile"*)
song="$(dbus-send --print-reply --dest=org.exaile.Exaile /org/exaile/Exaile \ song="$(dbus-send --print-reply --dest=org.exaile.Exaile /org/exaile/Exaile \
org.exaile.Exaile.Query | awk -F':|,' '{printf $6 " -" $4}')" org.exaile.Exaile.Query | awk -F':|,' '{if ($6 && $4) printf $6 " -" $4}')"
song="${song:3}"
;; ;;
esac esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment