8 lines
202 B
Plaintext
Raw Normal View History

2024-02-05 12:30:51 +04:00
#!/bin/sh
while :
do
2024-02-12 00:24:34 +04:00
echo "$(mpc current | awk '{ if ( length($0) > 80 ) { printf substr($0, 1, 80); print "..." } else { print $0; }}') " >/home/naiji/.local/share/i3status/now-playing
2024-02-05 12:30:51 +04:00
sleep 1
done