Skip to content

Instantly share code, notes, and snippets.

@acirtautas
Created September 20, 2013 05:54
Show Gist options
  • Save acirtautas/6633780 to your computer and use it in GitHub Desktop.
Save acirtautas/6633780 to your computer and use it in GitHub Desktop.
Raspberry PI kiosk scripts
# crontab -e
# Every work day at 8:30 am
30 8 * * 1,2,3,4,5 /home/pi/bin/tvon.sh
# Every work day at 18:30 pm
30 18 * * 1,2,3,4,5 /home/pi/bin/tvoff.sh
#!/bin/sh
chromium -kiosk https://builds.apache.org/
#!/bin/sh
tvservice --off > /dev/null
#!/bin/sh
tvservice --preferred > /dev/null
fbset -depth 8; fbset -depth 16; xrefresh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment