images/smilies/render-smilies.sh
author Dan
Sun, 28 Mar 2010 21:40:37 -0400
changeset 1225 4c6da61e613e
parent 944 073a42e4177f
permissions -rw-r--r--
Replaced (most of) the mini box icons with famfamfam silk icons, they're better looking.

#!/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