beremiz
Clone
Summary
Browse
Changes
Graph
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
2013-01-30, Laurent Bessard
6733a7c5c897
file is
Executable
Replaced SplitterWindow in ConfTreeNodeEditor by Notebook
#!/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