#!/bin/sh
# Conver a graphics to Icewm Icon
# Need ImageMagic !

convert $1 -resize 32x32 $2_32x32.xpm
convert $1 -resize 16x16 $2_16x16.xpm
rm $1

