Created
December 4, 2014 11:41
-
-
Save grekko/b6b8d85bcab8b6492aaf to your computer and use it in GitHub Desktop.
Raspberry Install script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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