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