Images/genicons_lx.sh
author btaylor@grond.willowglen.ab.ca
Mon, 06 Jul 2009 11:24:37 -0600
changeset 412 e0a6a5952d13
parent 196 54f5020531f6
permissions -rw-r--r--
right-click actions in Types pane on Windows should be applied to the right-clicked item, instead of the selected one.
#!/bin/bash

INKSCAPE=inkscape

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