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/img/montage.sh

12 lines
350 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 -background none icons/*-large.svg -geometry 540x540 -tile 6x6 -border 30 -bordercolor none montage.png
convert montage.png -resize 50% montage.webp
rm icons/*-large.svg