diff --git a/app/moonlight.ico b/app/moonlight.ico new file mode 100644 index 00000000..76d3b114 Binary files /dev/null and b/app/moonlight.ico differ diff --git a/scripts/generate-ico.sh b/scripts/generate-ico.sh new file mode 100755 index 00000000..380116f1 --- /dev/null +++ b/scripts/generate-ico.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# The ImageMagick conversion tool doesn't seem to always generate +# ICO files with background transparency properly. Please validate +# that the output has a transparent background. + +convert -density 256 -background none -define icon:auto-resize ../app/res/moonlight.svg ../app/moonlight.ico + +echo IMPORTANT: Validate the icon has a transparent background before committing!