aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKablersalat <crt@adastra7.net>2025-02-24 14:12:27 +0100
committerKablersalat <crt@adastra7.net>2025-02-24 14:12:27 +0100
commitaea6164bc864be5b0d3f4bdc430fe00925d0ed02 (patch)
tree9a68083b25251b4591273ed5fb1ed320a11bb66d
parentf06fd74bd35a842ba1b73fe7eb1c3f7b4c8c1adc (diff)
attempt 3
-rw-r--r--kiosk.sh51
1 files changed, 49 insertions, 2 deletions
diff --git a/kiosk.sh b/kiosk.sh
index ab85c0d..b4a81e8 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 "$@"
@@ -106,15 +106,38 @@ configure_start_sh() {
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
+ rm -f /home/kiosk/.vnc/passwd # Remove existing password file if it exists
echo "$VNC_PASSWORD" | vncpasswd -f > /home/kiosk/.vnc/passwd
chmod 600 /home/kiosk/.vnc/passwd
+ # Remove existing VNC server configuration if it exists
+ sudo systemctl stop x11vnc.service
+ sudo rm -f /etc/systemd/system/x11vnc.service
+
cat > /home/kiosk/start.sh <<EOF
#!/bin/bash
/usr/bin/chromium --no-first-run --disable-translate --no-default-browser-check --disable-cache --kiosk $2 &
x11vnc -display :0 -auth guess -forever -rfbport 5901 -passwdfile /home/kiosk/.vnc/passwd &
EOF
sudo chmod a+x /home/kiosk/start.sh
+
+ # Create a new VNC server configuration
+ sudo bash -c "cat > /etc/systemd/system/x11vnc.service << 'EOF'
+[Unit]
+Description=Start x11vnc at startup.
+After=multi-user.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/x11vnc -display :0 -auth guess -forever -rfbport 5901 -passwdfile /home/kiosk/.vnc/passwd
+
+[Install]
+WantedBy=multi-user.target
+EOF"
+
+ sudo systemctl daemon-reload
+ sudo systemctl enable x11vnc.service
+ sudo systemctl start x11vnc.service
}
# Helper function to configure start.sh for multiple tabs
@@ -127,9 +150,15 @@ configure_tabs() {
done
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
+ rm -f /home/kiosk/.vnc/passwd # Remove existing password file if it exists
echo "$VNC_PASSWORD" | vncpasswd -f > /home/kiosk/.vnc/passwd
chmod 600 /home/kiosk/.vnc/passwd
+ # Remove existing VNC server configuration if it exists
+ sudo systemctl stop x11vnc.service
+ sudo rm -f /etc/systemd/system/x11vnc.service
+
# Write the script with properly formatted commands
cat > /home/kiosk/start.sh <<EOF
#!/bin/bash
@@ -160,9 +189,27 @@ while true; do
fi
done
-x11vnc -display :0 -auth guess -forever -rfbport 5901 -passwd $VNC_PASSWORD &
+x11vnc -display :0 -auth guess -forever -rfbport 5901 -passwdfile /home/kiosk/.vnc/passwd &
EOF
chmod a+x /home/kiosk/start.sh
+
+ # Create a new VNC server configuration
+ sudo bash -c "cat > /etc/systemd/system/x11vnc.service << 'EOF'
+[Unit]
+Description=Start x11vnc at startup.
+After=multi-user.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/x11vnc -display :0 -auth guess -forever -rfbport 5901 -passwdfile /home/kiosk/.vnc/passwd
+
+[Install]
+WantedBy=multi-user.target
+EOF"
+
+ sudo systemctl daemon-reload
+ sudo systemctl enable x11vnc.service
+ sudo systemctl start x11vnc.service
}
# Function to edit .bashrc for automatic start of X session