Files
dropshell-templates/squashdisplay/scripts/watchdog.sh
Your Name 22ca6f07d4
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 34s
attempt to add squash stuff. Tailscale works!
2025-09-07 23:11:01 +12:00

10 lines
256 B
Bash
Executable File

#!/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