diff options
Diffstat (limited to 'desktop/.local/share/barmodules/qmmp.sh')
-rwxr-xr-x | desktop/.local/share/barmodules/qmmp.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/desktop/.local/share/barmodules/qmmp.sh b/desktop/.local/share/barmodules/qmmp.sh deleted file mode 100755 index a0ec01e..0000000 --- a/desktop/.local/share/barmodules/qmmp.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh -pidof qmmp 2> /dev/null > /dev/null -if [ $? -eq 0 ]; then - nowplaying=$(qmmp --nowplaying '%p - %a: %t') - if [ ${#nowplaying} -gt 80 ]; then - echo -n "${nowplaying:0:77}... " - else - echo -n "$nowplaying" - fi - echo -n "$(qmmp --status | head -1)" -else - echo -n "qmmp: Exited" -fi |