diff -r bf4420e9fa4d -r 2e16851ffecd ginebra/chrome/bedrockchrome/statusbar.snippet/icons/signal/svg_sig_convert.sh --- a/ginebra/chrome/bedrockchrome/statusbar.snippet/icons/signal/svg_sig_convert.sh Fri Jun 11 16:23:26 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,20 +0,0 @@ -#!/bin/sh - -# icons -ICON_WIDTH=20 -ICON_HEIGHT=20 - -echo -echo "Usage: $0 " -echo "This script converts svg icons into png icons with w=$ICON_WIDTH h=$ICON_HEIGHT" -echo "DPI is default, 90dpi" -echo "Edit the script to change the size\n" -echo "... Requires librsvg2-bin package from ubuntu\n" - -echo "CONVERTING the files listed below:" - -for i in $*; do - rsvg-convert -w $ICON_WIDTH -h $ICON_HEIGHT $i -o `echo $i | sed -e s/svg$/png/` - echo $i; -done -