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

10 lines
280 B
Bash
Executable file

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 8x4 -border 20 -bordercolor white montage.png
gio trash icons/*-large.svg