fix(flatpak): fix broken desktop file, icons, and service (#3561)

This commit is contained in:
ReenigneArcher
2025-01-20 19:15:23 -05:00
committed by GitHub
parent 3048e6fe20
commit f5b923c406
8 changed files with 58 additions and 49 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
PORT=47990
if ! curl -k https://localhost:$PORT > /dev/null 2>&1; then
(sleep 3 && xdg-open https://localhost:$PORT) &
exec sunshine "$@"
else
echo "Sunshine is already running, opening the web interface..."
xdg-open https://localhost:$PORT
fi