Image slideshow on Raspberry Pi
This is a complement of Autoplay video on Raspberry Pi post.
Lots of (art) people are using Raspberry Pi to show image slideshow in loop. There are many ways how to achieve the result, but the one I liked the most is the following:
- download Raspbian Lite from raspberrypi.org
- copy the downloaded image to the SD card, e.g.
sudo dd if=2020-02-13-raspbian-buster-lite.img of=/dev/mmcblk0 conv=fsync,notrunc bs=4M
- boot Raspberry Pi into freshly installed Raspbian
- run
sudo raspi-config
and set Boot to Automatic login (3 Boot Options
>B1 Desktop / CLI
>B2 Console Autologin
) - copy your images from USB flash drive to the SD card (
/media
folder) sudo apt-get update
sudo apt-get install fbi
- append this line
/usr/bin/fbi --device /dev/fb0 --autozoom --blend 2000 --timeout 5 --noverbose --random $(find /media -type f)
to file/home/pi/.bashrc
- reboot and enjoy!