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.
21 lines
454 B
21 lines
454 B
8 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
make_icons()
|
||
|
{
|
||
|
input_icon=$1
|
||
|
output_basename=$2
|
||
|
|
||
|
for extent in 16 22 24 32 48 64 128; do
|
||
|
size="${extent}x${extent}"
|
||
|
output="${output_basename}_$size.png"
|
||
|
echo "Converting $input_icon -> $output"
|
||
|
convert -background transparent -density 600 "$input_icon" \
|
||
|
-resize "$size" "$output"
|
||
|
done
|
||
|
}
|
||
|
|
||
|
cd src/images
|
||
|
make_icons icon.svg icon-normal
|
||
|
make_icons icon-running.svg icon-busy
|