blob: 7d294781448ad51f73e36b6ab6c1b5181860cf72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env dash
# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH
while true; do
state="$(mpc status '%state%')"
if [ "$state" = "playing" ]; then
song="$(mpc --format '[[%artist% - ]%title%]|[%file%]' current)"
echo "playing|bool|true"
echo "song|string|$song :: $(mpc status "%currenttime%/%totaltime%")"
else
echo "playing|bool|false"
fi
echo "" # commit
sleep 2
done
# vim: ft=sh
|