cd /DreamBoard/_library/Cache/Icons/Windows\ Vista

ls | while read iconname
do

if [[ $iconname == *2x.png ]]; then
convert $iconname -region 130x30+0+148 -negate $iconname
else
convert $iconname -region 65x15+0+74 -negate $iconname
fi

done
