Skip to content

Instantly share code, notes, and snippets.

@Xisabla
Created August 30, 2019 10:34
Show Gist options
  • Save Xisabla/bad644eb855eeefaff641235c7012877 to your computer and use it in GitHub Desktop.
Save Xisabla/bad644eb855eeefaff641235c7012877 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Standard install
sudo dnf update -y
sudo dnf install arduino -y
sudo dnf install audacity -y
sudo dnf install chromium -y
sudo dnf install cmake -y
sudo dnf install firefox -y
sudo dnf install gimp -y
sudo dnf install git -y
sudo dnf install htop -y
sudo dnf install gnome-disk-utility -y
sudo dnf install inkscape -y
sudo dnf install libreoffice -y
sudo dnf install octave -y
sudo dnf install sagemath -y
sudo dnf install g++ -y
# Added installs
## VLC
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
## VSCODE
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 vlc -y
sudo dnf install code -y
## Oh-my-zsh
sudo sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment