Skip to content

Instantly share code, notes, and snippets.

@brettinternet
Created April 24, 2024 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettinternet/24ea34d7ac9e3ed2443eaaa55d518d29 to your computer and use it in GitHub Desktop.
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)
# 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