added OBS

This commit is contained in:
ION606
2024-06-24 20:29:38 -04:00
parent 6c299751dd
commit a9de13a911
3 changed files with 81 additions and 2 deletions
+15 -2
View File
@@ -42,8 +42,8 @@ read answer
answer=${answer:-y}
if [ "$answer" != "y" ]; then
echo "Installation aborted."
exit
echo "Installation aborted."
exit
fi
# Make temporary directory
@@ -120,6 +120,19 @@ wget -O vesktop.rpm https://vencord.dev/download/vesktop/amd64/rpm && dnf instal
# Install Min
rpm -i https://github.com/minbrowser/min/releases/download/v1.32.1/min-1.32.1-x86_64.rpm --ignoreos --force
# install obs?
echo "Install OBS?"
read anserobs
anserobs=${anserobs:-y}
if [ "$anserobs" == "y" ]; then
curl -fsSL -o setupobs.sh https://github.com/ION606/swaybackup/raw/main/setupobs.sh \
&& chmod +x setupobs.sh \
&& sudo ./setupobs.sh \
|| echo "failed to install OBS!"
fi
# Clean-up and update
sudo dnf clean all
sudo dnf update