Skip to content

Instantly share code, notes, and snippets.

@petehamilton
Last active March 9, 2022 02:43
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save petehamilton/5412334 to your computer and use it in GitHub Desktop.
Save petehamilton/5412334 to your computer and use it in GitHub Desktop.
Set up a Raspberry Pi to load a web dashboard

Dashboards on Raspberry Pi

curl -L 'http://git.io/h1iuxQ' | sh
#!/usr/bin bash
PI_DASH_CONFIG_FILE="/etc/xdg/lxsession/LXDE/autostart"
PI_DASH_BOOT_FILE="/home/pi/dashboard_boot.sh"
sudo apt-get update && apt-get upgrade -y # Update the Pi
sudo apt-get install chromium # Get Chromium
sudo apt-get install x11-xserver-utils # Get x11 server utils
sudo apt-get install unclutter # Unclutter hides the mouse
sudo echo '@xset s off' >> $PI_DASH_CONFIG_FILE # Turn off screensaver
sudo echo '@xset -dpms' >> $PI_DASH_CONFIG_FILE # Turn off power saving
sudo echo '@xset s noblank' >> $PI_DASH_CONFIG_FILE # Disable screen blanking
sudo echo $PI_DASH_BOOT_FILE >> $PI_DASH_CONFIG_FILE # run script to load dashboard
echo '#!/usr/bin bash' > $PI_DASH_BOOT_FILE
echo 'chromium-browser --kiosk --new-window http://mydashboard.mysite.com/' >> $PI_DASH_BOOT_FILE
echo "Modify $PI_DASH_BOOT_FILE to change which webpage to load at boot"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment