Page 1 of 1

showpng - scan for images and create montage

Posted: Wed Jun 17, 2015 11:11 pm
by machinebacon
A variant of the 'playmp3' script. It scans the current and below directories and shows clickable thumbnails of all images in feh.

Code: Select all

#!/bin/bash
# showpng (bacon 2015)
# requires: feh
IMGLIST=~/.pnglist
shopt -s extglob globstar
printf '%s\n' **/*.@(jpg|png|jpeg) > $IMGLIST
feh -t `cat $IMGLIST`

Re: showpng - scan for images and create montage

Posted: Fri Jun 19, 2015 12:54 pm
by wuxmedia
What would anyone use this for... ;)

Re: showpng - scan for images and create montage

Posted: Fri Jun 19, 2015 8:23 pm
by Dr_Chroot
This... will... be... handy.

Re: showpng - scan for images and create montage

Posted: Sat Jul 04, 2015 7:33 pm
by a-109-107
amazing, didn't know feh was capable of this