Add Moonlight.ico for Windows and script to generate it

This commit is contained in:
Cameron Gutman 2018-07-24 20:07:10 -07:00
parent 010475e8a2
commit 5e4182f0a0
2 changed files with 9 additions and 0 deletions

BIN
app/moonlight.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

9
scripts/generate-ico.sh Executable file
View File

@ -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!