Last active
May 9, 2023 05:40
-
-
Save ojpojao/032e444d8b3d5668d6c20294a3d139ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# chmod +x init_setup.sh | |
# sudo ./init_setup.sh | |
dnf upgrade -y | |
dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -y && \ | |
dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -y && \ | |
dnf install vlc -y | |
rpm -v --import https://download.sublimetext.com/sublimehq-rpm-pub.gpg && \ | |
dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo -y && \ | |
dnf install sublime-text -y | |
dnf install snapd -y && \ | |
ln -s /var/lib/snapd/snap /snap | |
snap install termius-app && \ | |
snap install winbox && \ | |
snap install beekeeper-studio | |
cd /tmp | |
wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable-current.x86_64.rpm && \ | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm | |
dnf install google-earth-pro-stable-current.x86_64.rpm -y && \ | |
dnf install google-chrome-stable_current_x86_64.rpm -y | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment