Skip to content

Instantly share code, notes, and snippets.

@grekko
Created December 4, 2014 11:41
Show Gist options
  • Save grekko/b6b8d85bcab8b6492aaf to your computer and use it in GitHub Desktop.
Save grekko/b6b8d85bcab8b6492aaf to your computer and use it in GitHub Desktop.
Raspberry Install script
#!/bin/sh
# Source: https://www.danpurdy.co.uk/web-development/raspberry-pi-kiosk-screen-tutorial/
sudo apt-get update && sudo apt-get upgrade -y
sudo apt-get install chromium x11-xserver-utils unclutter
# After the installation, do:
# 1) Disable screensaver
# sudo nano /etc/xdg/lxsession/LXDE/autostart
# 2) Disable by commenting out: "@xscreensaver -no-splash"
# Add the following:
# @xset s off
# @xset -dpms
# @xset s noblank
# 3) Add chromium autostart, by adding this line to the end:
# @chromium --noerrdialogs --kiosk http://www.page-to.display
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment