mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-01 15:26:09 +00:00
11 lines
485 B
Bash
Executable File
11 lines
485 B
Bash
Executable File
#!/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
|
|
convert -density 256 -background none -size 64x64 ../app/res/moonlight.svg ../app/moonlight_wix.png
|
|
|
|
echo IMPORTANT: Validate the icon has a transparent background before committing!
|