]> git.lizzy.rs Git - dirlistozxa.git/blob - gen-thumbs
bc38ea2733264dcfe8c46f49ae882fd0c97bddcd
[dirlistozxa.git] / gen-thumbs
1 #!/bin/bash
2
3 # Generates thumbs
4
5 rm -rf .thumbs/
6 mkdir .thumbs
7
8 find \( -iname "*.png" -or -iname "*.jpg" -or -iname "*.jpeg" \) -exec bash -c 'mogrify -path .thumbs/ -auto-orient -thumbnail 128x128 -quality 90% "{}" &' \;