exozyme/about/montage.sh

10 lines
280 B
Bash
Raw Normal View History

2021-07-28 17:11:01 +00:00
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 ..
2021-07-28 17:13:04 +00:00
montage icons/*-large.svg -geometry 540x540 -tile 8x4 -border 20 -bordercolor white montage.png
2021-07-28 17:11:01 +00:00
gio trash icons/*-large.svg