You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
352 B

#!/usr/bin/with-contenv bash
if [ "$autoStart" = "true" ] && [ "$enableAudioScript" = "true" ]; then
echo "Automatic Start Enabled, starting in 2 min..."
sleep 2m
2 years ago
bash /config/extended/scripts/Audio.sh
else
echo "Automatic Start Disabled, manually run using this command:"
2 years ago
echo "bash /config/extended/scripts/Audio.sh"
sleep infinity
fi
exit $?