Raspberry PI kiosk mode with Chromium.
lokir’s linux notes
Raspberry PI kiosk mode with Chromium.
http://lokir.wordpress.com/2012/09/16/raspberry-pi-kiosk-mode-with-chromium/
1. Install chromium, x11-xserver-utils and unclutter
2. We need to prevent screen from going blank and disable screen saver.
- edit
Done.
1. Install chromium, x11-xserver-utils and unclutter
sudo apt-get update && apt-get upgrade -y
sudo apt-get install chromium x11-xserver-utils unclutter
2. We need to prevent screen from going blank and disable screen saver.
- edit
/etc/xdg/lxsession/LXDE/autostart
and comment # screen saver line and add those lines:
@xset s off
@xset -dpms
@xset s noblank
@chromium --kiosk --incognito http://some.web.
Done.