musicmuster/archive/audactious-control.sh
2021-03-24 21:14:35 +00:00

16 lines
223 B
Bash
Executable File

#!/bin/bash
a="/usr/bin/audtool"
# Advance playlist when track stops
while :; do
$a playback-stopped
if [ $? -eq 0 ]; then
break
fi
sleep 1
done
$a playlist-advance
exit 0