A simply way to have a Raspberry Pi in kiosk mode.
I needed to see a web page with monitoring data, so I simply need a monitor displaying a web page.
A Rasperry Pi.
Once installed the OS be sure you have installed:
- Clone the repo
- chromium: see http://raspberrypi.stackexchange.com/questions/44384/how-to-get-chromium-on-raspberry-3
- matchbox:
apt-get install -y matchbox-window-manager
Edit startx_kiosk.sh and change the URL on the line:
matchbox-window-manager & chromium --kiosk URL
for instance:
matchbox-window-manager & chromium --kiosk http://github.com
Be sure startx_kiosk.sh has execution permissions doing:
chmod u+x startx_kiosk.sh
and execute it
./startx_kiosk.sh &