aboutsummaryrefslogtreecommitdiff
path: root/dither-images.sh
blob: 8852ce509828ad1d8b4f835b0d8cee37b28c2f54 (plain)
1
2
3
4
5
6
cd assets/
find . -type f \( -name "*.png" -o -name "*.jpg" \) | while read fname; do
  echo "$fname"
  convert "$fname" -type Grayscale -ordered-dither 2x2 "$fname.dith.gif"
done