mirror of
https://github.com/linuxserver/docker-baseimage-rdesktop.git
synced 2026-02-20 08:39:58 +08:00
9 lines
136 B
Bash
Executable File
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
|