blob: e557ad03dc359cdbd7f70daaf9e1324db8422403 (
about) (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Copyright (C) 2021 Wojtek Kosior
# Redistribution terms are gathered in the `copyright' file.
for SIZE in 128 64 48 32 16; do
inkscape -z -e icons/haketilo$SIZE.png -w $SIZE -h $SIZE icons/haketilo.svg
done
|