Added thumb scripts.

This commit is contained in:
2024-02-22 05:03:05 +01:00
parent 4b9b3ca0cb
commit 62c8a04369
54 changed files with 18 additions and 0 deletions

7
logos-thumbs.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for dir in logos/*;
do mkdir -p "$dir/thumbs" "$dir/lazy";
mogrify -path "$dir/thumbs" -resize 300x40^\> "$dir/*.png";
mogrify -path "$dir/lazy" -resize 50x\> "$dir/*.png";
done