etherlab/images/genicons.sh
author GP Orcullo <kinsamanka@gmail.com>
Fri, 28 Oct 2022 20:04:12 +0800
branchpython3
changeset 3766 f99def63cdd8
parent 2043 27d4cb689a79
permissions -rw-r--r--
Update to wx.NewIdRef()
#!/bin/bash

INKSCAPE=inkscape

for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
do
 if [ $i.png -nt icons.svg ]; then
 	echo "Skip $i"
 else
	rm  -f $i.png
	echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
	"$INKSCAPE" icons.svg -z -e $i.png -i $i
 fi
done