Skip to content

Instantly share code, notes, and snippets.

@hexparrot
Created June 4, 2021 05:35
Show Gist options
  • Save hexparrot/0ce16321602196472b57fd29097f641a to your computer and use it in GitHub Desktop.
Save hexparrot/0ce16321602196472b57fd29097f641a to your computer and use it in GitHub Desktop.
Easily recreate template qube upon new distro release
#!/bin/bash
# Currently known-working with Fedora 33
#brave
dnf install -y dnf-plugins-core
dnf config-manager --add-repo https://brave-browser-rpm-release.s3.brave.com/x86_64/
rpm --import https://brave-browser-rpm-release.s3.brave.com/brave-core.asc
dnf install -y brave-browser
#sublime text
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
dnf install -y sublime-text
#slack
wget https://downloads.slack-edge.com/linux_releases/slack-4.16.0-0.1.fc21.x86_64.rpm
dnf localinstall -y slack*.rpm
#mysql workbench
wget https://cdn.mysql.com/archives/mysql-workbench/mysql-workbench-community-8.0.23-1.fc33.x86_64.rpm
dnf localinstall -y mysql-workbench*.rpm
#fuse-exfat
wget https://download1.rpmfusion.org/free/fedora/releases/33/Everything/x86_64/os/Packages/f/fuse-exfat-1.3.0-5.fc33.x86_64.rpm
dnf localinstall -y fuse*
#others
dnf install -y remmina
dnf install -y google-noto-emoji-color-fonts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment