Images/genicons_lx.sh
author greg
Fri, 22 May 2009 08:38:12 +0200
changeset 352 5cd60f7e510c
parent 196 54f5020531f6
permissions -rw-r--r--
fixed some bugs:
- zoom functionality on windows
- mark project state as saved when open a project
- add test for "clean entry" in display menu
#!/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