mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-01 07:50:25 +01:00
14 lines
255 B
Bash
14 lines
255 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if (( $# < 1 )); then
|
||
|
echo "usage : $0 SVG_FILE"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ICON_PATH="$(echo $1 | sed 's/[.]svg/.ico/')"
|
||
|
|
||
|
convert \
|
||
|
-density 300 \
|
||
|
-define icon:auto-resize=256,128,96,64,48,32,16 \
|
||
|
-background none \
|
||
|
"$1" "$ICON_PATH"
|