aboutsummaryrefslogtreecommitdiff
path: root/tools/dither-images.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/dither-images.sh')
-rw-r--r--tools/dither-images.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/dither-images.sh b/tools/dither-images.sh
deleted file mode 100644
index 11d0c04..0000000
--- a/tools/dither-images.sh
+++ /dev/null
@@ -1,6 +0,0 @@
1cd ../assets/
2find . -type f \( -name "*.png" -o -name "*.jpg" \) | while read fname; do
3 echo "$fname"
4 convert "$fname" -type Grayscale -ordered-dither 2x2 "$fname.dith.gif"
5done
6