From 06325d17fe4215f9d1fd34b3d6b63a110fdf3a5a Mon Sep 17 00:00:00 2001 From: AngelJumbo Date: Sun, 23 Mar 2025 09:56:56 -0500 Subject: [PATCH] adjust thumbnail res --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 5ec8e31..0943800 100755 --- a/build.sh +++ b/build.sh @@ -37,8 +37,8 @@ generate_thumbnails() { current_image=$((current_image + 1)) local img_filename="${img##*/}" local thumbnail="thumbnails/$section_name/$img_filename" - echo "Generating thumbnail ($current_image/$total_images): $img -> $thumbnail" - convert "$img" -resize 200x200 "$thumbnail" + echo "($current_image/$total_images): $img -> $thumbnail" + convert "$img" -resize 300x300 "$thumbnail" done done