Skip to content

Commit

Permalink
Add Steam and remove Tutanota
Browse files Browse the repository at this point in the history
  • Loading branch information
WebSnke committed Mar 29, 2023
1 parent ffbfaf3 commit 8d33e6c
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,38 +1,30 @@
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

FedoraInstallAppList=(
"code"
"ffmpeg"
"gparted"
"lm_sensors"
"neofetch"
"nodejs"
"util-linux-user"
"vim"
"zsh"
)

FlathubInstallAppList=(
"com.discordapp.Discord"
"com.tutanota.Tutanota"
"com.spotify.Client"
"org.chromium.Chromium"
"com.valvesoftware.Steam"
)

for FedoraApp in ${FedoraInstallAppList[@]}
do
dnf install $FedoraApp
done

for FlathubApp in ${FlathubInstallAppList[@]}
do
flatpak install flathub $FlathubApp
done

sudo dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
sudo dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf -y install ffmpeg

sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'

dnf check-update
sudo dnf install code
for FedoraApp in ${FedoraInstallAppList[@]}
do
dnf install $FedoraApp
done

0 comments on commit 8d33e6c

Please sign in to comment.