2022-10-05 23:04:32 +01:00

9 lines
136 B
Bash
Executable File

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