RPI Chromium kiosk mode

http://lokir.wordpress.com/2012/09/16/raspberry-pi-kiosk-mode-with-chromium/

Raspberry PI kiosk mode with Chromium.
Posted: 09/16/2012 | Author: lokir | Filed under: Other, raspberry pi | Tags: Chromium, Raspberry Pi |37 Comments

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.