diff options
author | Kablersalat <crt@adastra7.net> | 2025-02-24 18:57:26 +0100 |
---|---|---|
committer | Kablersalat <crt@adastra7.net> | 2025-02-24 18:57:26 +0100 |
commit | dfcbf0319e9a7f7b96734b2ab6cb97e6b582c8f5 (patch) | |
tree | 988588740ba841352f679b73664f104657368219 | |
parent | 508f7387a0754f14d2eeaee6c4589b56c3971180 (diff) |
cleanup and fixing one site script maybe ?
-rw-r--r-- | kiosk.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -108,9 +108,10 @@ set_start_script_single() { echo "$VNC_PASSWORD" | vncpasswd -f > /home/kiosk/.vnc/passwd chmod 600 /home/kiosk/.vnc/passwd + # Write the script with properly formatted commands cat > /home/kiosk/start.sh <<EOF #!/bin/bash -/usr/bin/chromium --no-first-run --disable-translate --no-default-browser-check --disable-cache --kiosk $2 & +/usr/bin/chromium --no-first-run --disable-translate --no-default-browser-check --disable-cache --kiosk $2 EOF chmod a+x /home/kiosk/start.sh } |