Files
pitts-touchscreen/2B+Software/www/resources/themes/default/no-stripes/generate.sh

11 lines
227 B
Bash

#!/bin/sh
#
# This script uses imagemagick to generate the stripe-XXpx.gif's.
#
for i in `seq 10 40`; do
convert -size 30x$[2*$i] xc:white \
-fill '#FFFFFF' -draw "rectangle 0,$i 30,$[2*$i]" \
no-stripe-${i}px.gif
done