Initial commit

This commit is contained in:
Torsten Schulz
2024-01-26 08:24:58 +01:00
commit 2a673b50ef
408 changed files with 94018 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/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