You have been warned.
- Install openbox + chromium + xdotool with the minimum requirements with
sudo apt-get install --no-install-recommends xserver-xorg x11-xserver-utils xinit openbox chromium-browser xdotool
- Copy the autostart configurations to the home folder with
mkdir .config/openbox; cp /etc/xdg/openbox/autostart ~/.config/openbox/autostart
- Paste the contents below into the bottom of the autostart file:
# Disable any form of screen saver / screen blanking / power management
xset s off
xset s noblank
xset -dpms
# Allow quitting the X server with CTRL-ATL-Backspace
setxkbmap -option terminate:ctrl_alt_bksp
# Start Chromium in kiosk mode
xterm -e ~/chrome.sh
- Place chrome.sh into the home folder and make it executable with
chmod +x ~/chrome.sh
- Start the Xserver once logged in by adding
startx -- -nocursor
into .profile