cztv_chaoszone_github/play_sound.sh

11 lines
194 B
Bash
Raw Normal View History

2021-07-30 10:13:26 +02:00
#!/bin/bash
# play the file
cmd="exec /usr/bin/mpv $1 & echo $$! > $2.pid"
echo $cmd
sh -c "$cmd"
# if pid still exists, press button
if test -f "$2.pid"; then
./send_companion.py $3 $4
fi