Update build.yml
This commit is contained in:
@@ -258,9 +258,18 @@ jobs:
|
|||||||
# Copy desktop file to usr/share/applications
|
# Copy desktop file to usr/share/applications
|
||||||
cp AppDir/spotiflac.desktop AppDir/usr/share/applications/
|
cp AppDir/spotiflac.desktop AppDir/usr/share/applications/
|
||||||
|
|
||||||
# Create icon using ImageMagick
|
# Use existing icon from build or convert SVG to PNG
|
||||||
sudo apt-get install -y imagemagick
|
if [ -f "build/appicon.png" ]; then
|
||||||
convert -size 256x256 xc:#FFD700 -gravity center -pointsize 80 -fill black -annotate +0+0 "SF" AppDir/spotiflac.png
|
# Resize to 256x256 if needed
|
||||||
|
convert build/appicon.png -resize 256x256 AppDir/spotiflac.png
|
||||||
|
elif [ -f "frontend/public/icon.svg" ]; then
|
||||||
|
# Convert SVG to PNG
|
||||||
|
convert -background none -size 256x256 frontend/public/icon.svg AppDir/spotiflac.png
|
||||||
|
else
|
||||||
|
# Fallback: create simple icon
|
||||||
|
convert -size 256x256 radial-gradient:#FFD700-#FFA500 AppDir/spotiflac.png
|
||||||
|
fi
|
||||||
|
|
||||||
cp AppDir/spotiflac.png AppDir/usr/share/icons/hicolor/256x256/apps/
|
cp AppDir/spotiflac.png AppDir/usr/share/icons/hicolor/256x256/apps/
|
||||||
cp AppDir/spotiflac.png AppDir/.DirIcon
|
cp AppDir/spotiflac.png AppDir/.DirIcon
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user