aboutsummaryrefslogtreecommitdiff
path: root/dither-images.sh
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-01-08 05:31:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-01-08 05:31:17 +0100
commit9ded4986b1d58eecb7dbb38635c76865d5358fda (patch)
treea36b5b10d6b584755f440506c554e83d2118f766 /dither-images.sh
parent6f9218e3837e2f9ec00453df790de2435f4abc45 (diff)
downloadmitjafelicijan.com-9ded4986b1d58eecb7dbb38635c76865d5358fda.tar.gz
Moved dither scripts under tools
Diffstat (limited to 'dither-images.sh')
-rw-r--r--dither-images.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/dither-images.sh b/dither-images.sh
deleted file mode 100644
index 8852ce5..0000000
--- a/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