etherlab/images/genicons.sh
author Edouard Tisserant <edouard.tisserant@gmail.com>
Wed, 04 Mar 2020 20:02:15 +0100
branchsvghmi
changeset 2856 1b529ba018ad
parent 2043 27d4cb689a79
permissions -rwxr-xr-x
SVGHMI: More precise error message on missing HMI path. Meter widget now defaults 0-100 range when min and max elements arent's present, without error.
#!/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