images/smilies/convert.sh
author Dan
Mon, 05 May 2008 20:37:33 -0400
changeset 546 506e8e3e2af2
parent 0 902822492a68
permissions -rw-r--r--
Switched Oxygen to use CSS sprites for faster loading (CSS changes were in a past commit, only adding image files here)

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