aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/update-thumbnails
blob: 80dc5ec4687a37b22d1d93a8a854d71e8ecbdb24 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

cd images || exit 1;
mogrify -path thumbnails -auto-orient -quiet -thumbnail x222 $(find -maxdepth 1 -regex '.*\.\(jpg\|png\)' -type f -mmin -60);
mogrify -format png -quiet thumbnails/*.jpg;
rm -f thumbnails/*.jpg
find -name '*.png' -mmin -60 -exec pngquant -v --quality 85 --ext .png --force {} \;
find -name '*.jpg' -mmin -60 -exec jpegoptim -v -m 85 {} +
touch .update-thumbnails;
echo Image Thumbnails in "'$(pwd)'" updated.;