images/smilies/convert.sh
author Dan
Thu, 04 Oct 2007 08:22:25 -0400
changeset 160 bed9d04fa144
parent 0 902822492a68
permissions -rw-r--r--
Fixed text colors on pages when dark system themes are used (bug could be seen using MurrinaNightOrange on an Ubuntu system)

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