blob: a0ec01e7086d60e9bdfa7c57fc8e3015333b1d0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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
|