aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/update-thumbnails
blob: 604bc0f73151ff8143699229b06c7a120a25e25e (plain)
1
2
3
4
5
6
7
8
9
#!/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 thumbnails -name '*.png' -mtime -1 -exec pngquant --quality 85 --ext .png --force {} \;
touch .update-thumbnails;
echo Image Thumbnails in "'$(pwd)'" updated.;