8 lines
91 B
Bash
Executable File
8 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while :
|
|
do
|
|
echo "$(mpc | head -n 1) " > /home/naiji/.now-playing
|
|
sleep 1
|
|
done
|