chore(sunshine): Perform removal properly

Removes changes set during the additional installation process
This commit is contained in:
RJ Trujillo 2023-11-21 06:46:30 -07:00
parent ce959ff922
commit 78de8f842b

View File

@ -34,9 +34,15 @@ configure-waydroid:
install-sunshine:
#!/usr/bin/env bash
flatpak install --system --noninteractive flathub dev.lizardbyte.app.Sunshine
flatpak run --command=additional-install.sh app/dev.lizardbyte.app.Sunshine/x86_64/stable
flatpak run --command=additional-install.sh app/dev.lizardbyte.app.Sunshine/x86_64/stable || true
echo "Sunshine is installed!"
# Remove Sunshine
remove-sunshine:
#!/usr/bin/env bash
flatpak run --command=remove-additional-install.sh app/dev.lizardbyte.app.Sunshine/x86_64/stable || true
flatpak uninstall --delete-data --noninteractive dev.lizardbyte.sunshine
# Autostart Sunshine
autostart-sunshine:
#!/usr/bin/env bash