code-snippets/shell/.update-now-playing.sh

7 lines
104 B
Bash
Raw Normal View History

2024-04-08 18:35:01 -04:00
#!/bin/sh
while :
do
echo "$(mpc | head -n 1) " > /home/naiji/.now-playing
sleep 1
done