Created
September 20, 2013 05:54
-
-
Save acirtautas/6633780 to your computer and use it in GitHub Desktop.
Raspberry PI kiosk scripts
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
# 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 |
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 | |
chromium -kiosk https://builds.apache.org/ |
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 | |
tvservice --off > /dev/null |
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 | |
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