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.

6 lines
148 B

#!/bin/bash
# sh genicon.sh <path>
for size in 16 48 128
do
convert $1 -resize ${size}x -unsharp 1.5x1+0.7+0.02 ./src/assets/icon${size}.png
done