Created
April 24, 2024 22:41
-
-
Save brettinternet/24ea34d7ac9e3ed2443eaaa55d518d29 to your computer and use it in GitHub Desktop.
frame image buffer for a simple console slide show with a Raspberry Pi (Zero W)
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
# 1. Setup raspbian lite - no desktop environment or Xorg necessary. Install `fbi`. | |
# 2. Sync files to Pi: | |
rsync -ahP --delete ./slides remote-ssh-host:~ | |
# 3. Append to ~/.profile to run on startup | |
if [[ $(fgconsole 2>/dev/null) == 1 ]]; then | |
fbi -d /dev/fb0 -noverbose -a -t 60 -cachemem 0 $HOME/slides/* | |
fi | |
# 4. use `raspi-config` to enable autologin. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment