This repository has been archived on 2024-01-05. You can view files and clone it, but cannot push or open issues or pull requests.
website/about/montage.sh
2021-07-29 22:11:39 -05:00

12 lines
341 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 1080 -f svg -o "$new"
done
cd ..
montage icons/*-large.svg -geometry 540x540 -tile 6x6 -border 30 -bordercolor white montage.png
convert montage.png -resize 50% montage.webp
gio trash icons/*-large.svg