attempt to add squash stuff. Tailscale works!
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 34s

This commit is contained in:
Your Name
2025-09-07 23:11:01 +12:00
parent 9aa6168f76
commit 22ca6f07d4
14 changed files with 904 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Watchdog script to restart Chromium if it crashes
while true; do
if ! pgrep chromium > /dev/null; then
echo "$(date): Chromium not running, restarting..."
DISPLAY=:0 /home/${KIOSK_USER}/kiosk.sh &
fi
sleep 30
done