aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/update-thumbnails
blob: e3fa485b24c0dba3f9fbb37ecd6d984d21c68879 (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 -type f -mtime -1);
mogrify -format png -quiet thumbnails/*.jpg;
rm -f thumbnails/*.jpg
find -name '*.png' -mtime -1 -exec pngquant --quality 85 --ext .png --force {} \;
find -name '*.jpg' -mtime -1 -exec jpegoptim -m 85 {} +
touch .update-thumbnails;
echo Image Thumbnails in "'$(pwd)'" updated.;