2023-05-18 15:13:40 +01:00

10 lines
137 B
Bash
Executable File

#!/bin/bash
while :
do
if [[ ! $(/usr/bin/pulseaudio --check) ]]; then
/usr/bin/pulseaudio --start
fi
sleep 10
done