Photos

This is a simple one-liner that uses feh to run a slideshow for mum:

#! /bin/bash cd /home/guiplug/Pictures/from_ray && \ feh . \ -e "FreeSans/24" \ --caption-path ./captions \ -C '/usr/share/fonts/truetype/freefont' \ -g 800x600 \ --cycle-once \ --slideshow-delay 30

I recorded the captions 'on the fly', one time when mum and I were looking at the photos together:

    1. Launch feh, specifying the path to the images, and the relative path to the captions directory.
    2. When the first image is displayed, type c to enter caption mode, followed by the caption text and Enter.

The man pages are good if you want to explore the options further.