Skip to content

Instantly share code, notes, and snippets.

@MatteoLacki
Created May 27, 2022 07:19
Show Gist options
  • Save MatteoLacki/35becd369603c1749765c4ae8fc206d5 to your computer and use it in GitHub Desktop.
Save MatteoLacki/35becd369603c1749765c4ae8fc206d5 to your computer and use it in GitHub Desktop.
# vim /etc/dnf/dnf.conf
# # speed optimizations
# fastestmirror=True
# max_parallel_downloads=10
# keepcache=True
sudo dnf install vim alacritty i3 byobu arandr flameshot arandr
sudo dnf copr enable kallepm/tuxedo-keyboard
sudo dnf install tuxedo-keyboard
sudo dnf install kallepm/tuxedo-control-center
sudo dnf install tuxedo-control-center
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf groupupdate core
sudo dnf groupupdate multimedia --setop="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
sudo dnf groupupdate sound-and-video
# This is sort of shit: do not use it
# flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
# sublime
sudo dnf config-manager --add-repo https://download.sublimetext.com/rpm/stable/x86_64/sublime-text.repo
sudo dnf install sublime-text
# alacritty
mkdir ~/Software
mkdir -p ~/.config/alacritty
cd ~/Software; git clone https://github.com/eendroroy/alacritty-theme.git
cp ~/Software/alacritty-theme/themes/ayu_dark.yaml ~/.config/alacritty/alacritty.yml
# vim ~/.config/alacritty/alacritty.yml
# change background to 0x000000
# mattermost
sudo dnf copr enable valentinb/mattermost
sudo dnf install mattermost-desktop
# python
sudo dnf install python-devel pypy pypy3 -y
sudo dnf install python3-notebook mathjax sscg
pip3 install jupyterlab --user
# R
sudo dnf install R rstudio
dnf repoquery --repo=fedora-source R-*
sudo dnf install 'dnf-command(copr)'
sudo dnf copr enable iucar/cran
sudo dnf install R-CoprManager
sudo dnf install R-CRAN-littler R-CRAN-ggplot2 R-CRAN-data.table R-CRAN-stringr R-CRAN-wesanderson
sudo dnf install R-CRAN-devtools R-CRAN-roxygen2 R-CRAN-rmarkdown R-CRAN-Rcpp R-CRAN-RSQLite R-CRAN-matrixStats
sudo dnf install -y atlas R-flexiblas flexiblas-* rstudio-desktop
# C++
sudo dnf install clang
# docker
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo systemctl start docker
sudo docker run hello-world
# dbs
sudo dnf install mariadb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment