images/smilies/convert.sh
author Dan
Sun, 30 Sep 2007 19:18:09 -0400
changeset 151 824821224153
parent 0 902822492a68
permissions -rw-r--r--
Added a new Javascript variable, aclDisableTransitionFX, that will switch off effects on message boxes and the ACL editor when set to true

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