aboutsummaryrefslogtreecommitdiff
path: root/tools/dither-images.sh
blob: 11d0c0445aa001499f55c4efb0ea14d30609860d (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