8 lines
97 B
Plaintext
8 lines
97 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
printf '%s\n' "$(mpc current)"
|
||
|
mpc idle player > /dev/null
|
||
|
done
|