mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 14:14:34 +02:00

And rename the relevant build variable to make more sense Signed-off-by: Echo J <tcg96nougat@gmail.com>
69 lines
2.4 KiB
Bash
Executable File
69 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
LAUNCHER_APPID="org.prismlauncher.PrismLauncher"
|
|
|
|
svg2png() {
|
|
input_file="$1"
|
|
output_file="$2"
|
|
width="$3"
|
|
height="$4"
|
|
|
|
inkscape -w "$width" -h "$height" -o "$output_file" "$input_file"
|
|
}
|
|
|
|
if command -v "inkscape" && command -v "icotool" && command -v "oxipng"; then
|
|
# Windows ICO
|
|
d=$(mktemp -d)
|
|
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_16.png" 16 16
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_24.png" 24 24
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_32.png" 32 32
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_48.png" 48 48
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_64.png" 64 64
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_128.png" 128 128
|
|
svg2png ${LAUNCHER_APPID}.svg "$d/prismlauncher_256.png" 256 256
|
|
|
|
oxipng --opt max --strip all --alpha --interlace 0 "$d/prismlauncher_"*".png"
|
|
|
|
rm prismlauncher.ico && icotool -o prismlauncher.ico -c \
|
|
"$d/prismlauncher_256.png" \
|
|
"$d/prismlauncher_128.png" \
|
|
"$d/prismlauncher_64.png" \
|
|
"$d/prismlauncher_48.png" \
|
|
"$d/prismlauncher_32.png" \
|
|
"$d/prismlauncher_24.png" \
|
|
"$d/prismlauncher_16.png"
|
|
else
|
|
echo "ERROR: Windows icons were NOT generated!" >&2
|
|
echo "ERROR: requires inkscape, icotool and oxipng in PATH"
|
|
fi
|
|
|
|
if command -v "inkscape" && command -v "iconutil" && command -v "oxipng"; then
|
|
# macOS ICNS
|
|
d=$(mktemp -d)
|
|
|
|
d="$d/prismlauncher.iconset"
|
|
|
|
mkdir -p "$d"
|
|
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_16x16.png" 16 16
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_16x16@2.png" 32 32
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_32x32.png" 32 32
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_32x32@2.png" 64 64
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_128x128.png" 128 128
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_128x128@2.png" 256 256
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_256x256.png" 256 256
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_256x256@2.png" 512 512
|
|
svg2png ${LAUNCHER_APPID}.bigsur.svg "$d/icon_512x512@2x.png" 1024 1024
|
|
|
|
oxipng --opt max --strip all --alpha --interlace 0 "$d/icon_"*".png"
|
|
|
|
iconutil -c icns "$d"
|
|
else
|
|
echo "ERROR: macOS icons were NOT generated!" >&2
|
|
echo "ERROR: requires inkscape, iconutil and oxipng in PATH"
|
|
fi
|
|
|
|
# replace icon in themes
|
|
cp -v ${LAUNCHER_APPID}.svg "../launcher/resources/multimc/scalable/launcher.svg"
|