xmobar - add quodlibet info/toggle and sound icon

This commit is contained in:
Felix Van der Jeugt 2015-03-08 22:16:03 +01:00
parent 7bf50613a3
commit ce22e48484
9 changed files with 134 additions and 1 deletions

8
local/bin/quodinfo Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
status=$(quodlibet --status | cut -d' ' -f1)
case "$status" in
"playing") quodlibet --print-playing "<title~album>" ;;
*) ;;
esac