F.E.I.S/utils/render_windows_icon.sh
2023-07-29 01:09:45 +02:00

14 lines
255 B
Bash
Executable File

#!/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"