#!/bin/sh # Make Theme Logos. Uses ImageMagick export PATH=/usr/X11R6/bin:${PATH} themes="Education Healthcare Idtheft Languages Netdefenses Sensornets" for theme in $themes do convert -size 100x26 xc:transparent -font "Arial Black" \ -pointsize 17 -draw "text 5,20 '$theme'" \ theme-$theme.png; #-channel RGBA -gaussian 0x6 -fill black \ #-stroke black -draw "text 6,21 '$theme'" \ done