Last active
February 3, 2026 20:18
-
-
Save dacr/21f80f332b95ba3146565dc9b48df137 to your computer and use it in GitHub Desktop.
photos diaporama / published by https://github.com/dacr/code-examples-manager #b865285a-5169-43fb-9a8d-3744351030c0/1743ae85f7429d027df07dc1cb0c5d36752c592b
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
| ## summary : photos diaporama | |
| ## keywords : bash, diaporama, photos, feh | |
| ## publish : gist | |
| ## authors : David Crosson | |
| ## license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| ## id : b865285a-5169-43fb-9a8d-3744351030c0 | |
| ## execution : sudo apt-get install feh | |
| ## created-on : 2020-08-12T21:28:47+02:00 | |
| ## managed-by : https://github.com/dacr/code-examples-manager | |
| DIAPORAMA_LOCATION=${1:-/tmp} | |
| echo "Looking for images recursively from $DIAPORAMA_LOCATION" | |
| feh \ | |
| --image-bg black \ | |
| --auto-rotate \ | |
| --randomize \ | |
| --recursive \ | |
| --full-screen \ | |
| --slideshow-delay 10.0 \ | |
| --scale-down \ | |
| --auto-zoom \ | |
| --draw-filename \ | |
| --draw-tinted \ | |
| --font DejaVuSansMono/22 \ | |
| --fontpath /usr/share/fonts/truetype/dejavu/ \ | |
| --auto-zoom "$DIAPORAMA_LOCATION" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment