etherlab/images/genicons.sh
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sun, 12 Apr 2020 21:43:42 +0200
branchsvghmi
changeset 2923 5ec1c07ce582
parent 2043 27d4cb689a79
permissions -rwxr-xr-x
SVGHMI: HMI:DropDown work in progress, intermediate commit. Now menu's rectangle grows up to viewport borders.
#!/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