2025-03-14 15:04:49 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# $1: Input path to an image to use for generating icons.
|
2025-03-14 15:49:23 -04:00
|
|
|
# Helper script to generate qtk's icons for Windows given a path to an input PNG.
|
2025-03-14 15:04:49 -04:00
|
|
|
sudo apt install imagemagick
|
|
|
|
|
|
|
|
# For the NSIS (un)installer executable shortcut icon.
|
|
|
|
convert "$1" -resize 256x256,128x128,64x64,48x48,32x32,16x16 -background transparent -colors 256 kilroy.ico
|
|
|
|
|
|
|
|
# For the NSIS installer splash screen.
|
|
|
|
convert "$1" -resize 164x314! -background white -flatten kilroy_splash.bmp
|