mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-26 14:41:14 +00:00
12 lines
264 B
Bash
12 lines
264 B
Bash
#!/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
|