18 lines
419 B
Bash
Executable File
18 lines
419 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SIZES="57 60 72 76 114 120 144 152 180"
|
|
|
|
for SIZE in $SIZES
|
|
do
|
|
convert ./icon_orig.png -resize ${SIZE}x${SIZE} app/rollerverbrauch/static/apple-touch-icon-${SIZE}.png
|
|
done
|
|
|
|
convert ./icon_orig.png -resize 192x192 app/rollerverbrauch/static/android-icon-192x192.png
|
|
|
|
SIZES="16 32 96"
|
|
for SIZE in $SIZES
|
|
do
|
|
convert ./icon_orig.png -resize ${SIZE}x${SIZE} app/rollerverbrauch/static/favicon-${SIZE}.png
|
|
done
|
|
|