From f06fd74bd35a842ba1b73fe7eb1c3f7b4c8c1adc Mon Sep 17 00:00:00 2001 From: Kablersalat Date: Mon, 24 Feb 2025 14:04:31 +0100 Subject: attempt 2 --- kiosk.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kiosk.sh b/kiosk.sh index e83321b..ab85c0d 100644 --- a/kiosk.sh +++ b/kiosk.sh @@ -94,7 +94,7 @@ configure_start_sh() { configure_tabs $SCALE_FACTOR "${tab_urls[@]}" fi else # Automated mode with URLs as arguments - if [ $# -eq 1 ]; then # Single website + if [ $# -eq 1]; then # Single website set_start_script_single $SCALE_FACTOR $1 else # Multiple tabs configure_tabs $SCALE_FACTOR "$@" @@ -102,17 +102,17 @@ configure_start_sh() { fi } - # Helper function to configure start.sh for a single website set_start_script_single() { VNC_PASSWORD=$(dialog --title "VNC Password" --inputbox "Please enter the VNC password:" 8 50 "" 3>&1 1>&2 2>&3 3>&-) + mkdir -p /home/kiosk/.vnc echo "$VNC_PASSWORD" | vncpasswd -f > /home/kiosk/.vnc/passwd chmod 600 /home/kiosk/.vnc/passwd cat > /home/kiosk/start.sh <