exozyme/img/montage.sh
Anthony Wang e131dc1110
2024 major cleanup
- Remove FUQs page and move some of the questions to the about or quickstart pages
- Remove info boxes
- Use avif instead of webp images everywhere and keep png/jpg fallbacks
- Add pubkey.asc
- Add id things to all h2
- Convert all h4 headings to h3
- Simplify/fix wording in a lot of places
2024-01-05 00:47:16 +00:00

12 lines
358 B
Bash
Executable file

#!/usr/bin/bash
cd icons
for old in *; do
new="$(echo "$old" | sed -e 's/.svg$/-large.svg/')"
echo $new
rsvg-convert "$old" -h 1440 -f svg -o "$new"
done
cd ..
montage -background white icons/*-large.svg -geometry 720x720 -tile 5x5 -border 30 -bordercolor transparent montage.png
convert montage.png -resize 50% montage.avif
rm icons/*-large.svg