HDMI
Summary
sudo apt-get update sudo apt-get upgrade sudo apt-get install --no-install-recommends xserver-xorg x11-xserver-utils xinit openbox sudo apt-get install --no-install-recommends chromium-browser
sudo raspi-config
sudo nano /etc/xdg/openbox/autostart# 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-ALT-Backspace setxkbmap -option terminate:ctrl_alt_bksp # Start Chromium in kiosk mode sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' ~/.config/chromium/'Local State' sed -i 's/"exited_cleanly":false/"exited_cleanly":true/; s/"exit_type":"[^"]\+"/"exit_type":"Normal"/' ~/.config/chromium/Default/Preferences chromium-browser --noerrdialogs --incognito --disable-infobars --check-for-update-interval=31536000 --kiosk 'http://127.0.0.1:1880/ui/'
nano /home/pi/.bash_profile[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && startx -- -nocursor
sudo reboot now
Last updated