This commit is contained in:
Nishi 2025-11-23 02:34:40 +09:00
commit 9418e59109
Signed by: nishi
GPG key ID: 27EF69B208EB9343

View file

@ -1,7 +1,9 @@
#!/bin/sh
cd icons/scalable
for i in 128 64 32 16; do
echo "-- ${i}x${i}"
for j in *.svg; do
echo "$j"
rsvg-convert --height=$i -o ../${i}x${i}/`echo $j | cut -d. -f1`.png $j
done
done