Skip to content

Commit

Permalink
fix: Use nightly RPM of sunshine until present elsewhere
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleGospo committed Jan 19, 2024
1 parent e838131 commit 736d70e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 736d70e

Please sign in to comment.