I'm setting up a pi to run in kiosk mode as per the instructions in dashboard nodered.
I use this link :Can I delay chromium in kiosk mode? - Raspberry Pi Forums
Unfortunately the refresh page is displayed.
what am i doing?
My start-chromium.sh file is:
#!/bin/bash
echo "Starting chromium in 5 seconds..."
sleep 5
while :
do
chromium --noerrdialogs --kiosk http://192.168.31.144:1880/ui
done
I hope someone can help me.
Thanks.