Simple way to run the chromium browser full screen on boot.
In command line :-
This file: –
1 2 3 |
sudo nano /etc/xdg/lxsession/LXDE-pi/autostart |
add this: –
1 2 3 4 5 6 7 8 |
@lxpanel --profile LXDE @pcmanfm --desktop --profile LXDE @xset s off @xset -dpms @xset s noblank @/home/pi/run.sh |
In the following file : –
1 2 3 |
sudo nano /home/pi/run.sh |
add this:-
1 2 3 4 5 6 |
#!/bin/sh # Run Chromium /usr/bin/chromium-browser --window-size=480,320 --kiosk --disable-overlay-scrollbar --noerrdialogs --incognito --window-position=0,0 --app=http://aq.gthex.co.uk:10000 |
This is a quick and dirty way, but a more in depth tutorial you can see below.
Open an HTML page when starting Raspberry Pi OS with Chromium Browser in full screen (kiosk mode)