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