I have been trying to make a autostart script to opens up a web page in fullscreen mode
sudo nano .config/lxsession/LXDE-pi/autostart
@chromium-browser --kiosk --disable-restore-session-state www.domain.com
this one works but i also want to refresh the page like every 10 minutes. I'm trying to write a code to do that
sudo nano .config/lxsession/LXDE-pi/autostart
@/usr/bin/python /home/pi/PATH/TO/SCRİPT.py
like this should work but im not sure how a loop or delay will effect the system. Should i make it run at backround and if so how can i?
I know there are many answers Execute script on start-up in this topic but i couldn't find an answer to refreshing and making a loop at autostart script.
This is my first question. Please let me know if i make some formatting errors.
How to refresh and creating script is explained in https://www.raspberrypi.org/forums/viewtopic.php?t=163316 this topic but still i have no idea how that will effect my system and is it okay to do it that way.