etherlab/images/genicons.sh
author Edouard Tisserant
Wed, 12 May 2021 11:36:56 +0200
changeset 2736 a81b72ef156c
parent 2043 27d4cb689a79
permissions -rw-r--r--
Add ThirPartyPath call in util.path module, so that individual extensions don't have to each implement same logic to find dependencies
#!/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