fix: Use nightly RPM of sunshine until present elsewhere

This commit is contained in:
Kyle Gospodnetich 2024-01-19 14:55:05 -08:00
parent e838131bf0
commit 736d70e309
2 changed files with 2 additions and 6 deletions

View File

@ -62,7 +62,7 @@ install-sunshine:
#!/usr/bin/bash
sudo systemctl enable sunshine-workaround.service
ublue-update --wait
rpm-ostree install -y sunshine
rpm-ostree install -y https://github.com/LizardByte/Sunshine/releases/download/nightly-dev/sunshine-fedora-$(rpm -E %fedora)-amd64.rpm
echo "Sunshine is installed, please reboot to apply changes."
# Remove Sunshine

View File

@ -50,18 +50,14 @@ configure-waydroid:
# Install Sunshine
install-sunshine:
#!/usr/bin/bash
sudo sed -i '0,/enabled=0/s//enabled=1/' /etc/yum.repos.d/rpmfusion-nonfree.repo
sudo sed -i '0,/enabled=0/s//enabled=1/' /etc/yum.repos.d/rpmfusion-nonfree-updates.repo
systemctl enable sunshine-workaround.service
ublue-update --wait
rpm-ostree install -y sunshine
rpm-ostree install -y https://github.com/LizardByte/Sunshine/releases/download/nightly-dev/sunshine-fedora-$(rpm -E %fedora)-amd64.rpm
echo "Sunshine is installed!"
# Remove Sunshine
remove-sunshine:
#!/usr/bin/bash
sudo sed -i '0,/enabled=1/s//enabled=0/' /etc/yum.repos.d/rpmfusion-nonfree.repo
sudo sed -i '0,/enabled=1/s//enabled=0/' /etc/yum.repos.d/rpmfusion-nonfree-updates.repo
systemctl disable sunshine-workaround.service
ublue-update --wait
rpm-ostree remove -y sunshine