view pidgin/pixmaps/art-tools/clean-svg-definitions.sh @ 24933:b5fccd9d3fce

no reason to create an icon and then scale, gtk_widget_render_icon will be able to cache it this way, I think
author Ka-Hing Cheung <khc@hxbc.us>
date Sat, 10 Jan 2009 07:35:31 +0000
parents 209da0d52824
children
line wrap: on
line source

#!/bin/bash

for f in `ls *.svg`
do
  echo "Processing $f file..."
  inkscape --vacuum-defs $f
done