ginebra/chrome/bedrockchrome/toolbar.snippet/icons/svg_toolbar_convert.sh
branchGCC_SURGE
changeset 8 2e16851ffecd
parent 2 bf4420e9fa4d
parent 6 1c3b8676e58c
--- a/ginebra/chrome/bedrockchrome/toolbar.snippet/icons/svg_toolbar_convert.sh	Fri Jun 11 16:23:26 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-
-# toolbar icons
-ICON_WIDTH=40
-ICON_HEIGHT=40
-
-# toolbar icon borders
-#ICON_WIDTH=1
-#ICON_HEIGHT=30
-
-echo
-echo "Usage: $0 <list of svg files to convert>"
-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
-