Added dedicated SFW tag section.

This commit is contained in:
2026-02-04 04:57:34 +01:00
parent d877c49cb4
commit 39ee6a3b26
5 changed files with 9 additions and 0 deletions

7
sfws-thumbs.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for dir in sfw/*;
do mkdir -p "$dir/thumbs" "$dir/lazy";
mogrify -path "$dir/thumbs" -resize x280\> -quality 90% "$dir/*.jpeg";
mogrify -path "$dir/lazy" -resize x90\> -quality 90% "$dir/*.jpeg";
done