images/smilies/render-smilies.sh
author Dan
Wed, 27 May 2009 09:12:59 -0400
changeset 1002 4d1bb8deee88
parent 944 073a42e4177f
permissions -rw-r--r--
Whoa! I broke Live Re-Auth, fortunately after the 1.1.6 release.

#!/bin/bash
for f in *.svg; do
    echo Converting $f
    fname=`echo $f | cut -d '.' -f 1`
    rm -f $fname.png
    inkscape -z -f $f -w 22 -h 22 -e ./$fname.png
done