Files
hassio-addons/zzz_draft_birdnet-pi/rootfs/custom-services.d/00_dbus
2024-04-26 10:57:34 +02:00

15 lines
281 B
Plaintext

#!/usr/bin/with-contenv bashio
# Waiting for dbus
until [[ -e /var/run/dbus/system_bus_socket ]]; do
sleep 1s
done
echo "Starting service: pulseaudio"
while :
do
if [[ ! $(/usr/bin/pulseaudio --check) ]]; then
/usr/bin/pulseaudio --system
fi
sleep 10
done