5 lines
93 B
Bash
Executable file
5 lines
93 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while : ; do
|
|
mpc idle >/dev/null && kill -46 "$(pidof someblocks)" || break
|
|
done
|