12 lines
199 B
Plaintext
Raw Normal View History

2020-05-09 21:26:23 +02:00
#!/bin/sh
echo ""
if mpc status | grep -q "playing"; then
2020-05-13 15:07:01 +02:00
mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[playing\\].*//g"
2020-05-09 21:26:23 +02:00
elif mpc status | grep -q "paused"; then
2020-05-13 15:07:01 +02:00
echo ""
2020-05-09 21:26:23 +02:00
else
2020-05-13 15:07:01 +02:00
echo ""
2020-05-09 21:26:23 +02:00
fi