dots/.script/polybar-mpd.sh

8 lines
170 B
Bash
Raw Normal View History

2019-10-03 19:13:57 +02:00
#!/usr/bin/env sh
if mpc | grep '\[paused\]' 1> /dev/null; then
printf " "
else
printf " %s " "$(mpc --format=%title% | awk 'NR==1' | cut -c -22 | sed 's/\s*$//')"
fi