You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
252 B
10 lines
252 B
11 years ago
|
#!/bin/bash
|
||
|
|
||
|
sizes=(16 32 48 256)
|
||
|
|
||
|
for size in ${sizes[@]}; do
|
||
|
inkscape -z -e 2048-qt_${size}x${size}.png -w $size -h $size scalable/apps/2048-qt.svg
|
||
|
mkdir -p ${size}x${size}/apps
|
||
|
mv 2048-qt_${size}x${size}.png ${size}x${size}/apps/2048-qt.png
|
||
|
done
|