From 14f06086b45df227bda19b354dd716196ee59535 Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 27 Sep 2021 11:52:36 -0700 Subject: [PATCH] adding pulse wrapper to alpine base --- root/startpulse.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 root/startpulse.sh diff --git a/root/startpulse.sh b/root/startpulse.sh new file mode 100755 index 0000000..7221162 --- /dev/null +++ b/root/startpulse.sh @@ -0,0 +1,8 @@ +#!/bin/bash +while : +do + if [[ ! `/usr/bin/pulseaudio --check` ]]; then + /usr/bin/pulseaudio --start + fi + sleep 10 +done