blob: 0f2e1917ede7f7d3ae6da123edc5350893765a0d (
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.1" . %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
|