Skip to content

Instantly share code, notes, and snippets.

@ctrlouis
Last active May 16, 2022 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrlouis/a6ad7d6a763e2fffc2d4c317d6df3ecc to your computer and use it in GitHub Desktop.
Save ctrlouis/a6ad7d6a763e2fffc2d4c317d6df3ecc to your computer and use it in GitHub Desktop.
Ubuntu 20.04+ config
#!/bin/bash
# Apps
## mpv (video player)
sudo apt install mpv
## discord
sudo snap install discord
## filezilla
sudo apt-get install -y filezilla
## postman
sudo snap install postman
## keepassxc
sudo snap install keepassxc
## robo-3t
sudo snap install robo3t-snap
## visual studio code
sudo snap install code --classic
# GUI OS tuning
## gnome-tweaks
sudo apt-get install -y gnome-tweaks
## dconf-editor
sudo apt-get install -y dconf-editor # go to org/gnome/shell/extensions/dash-to-dock for modify dock
# Topbar tools
## caffeine
sudo apt-get install -y caffeine
sudo bash -c "echo Exec=/usr/bin/caffeine-indicator >> /etc/xdg/autostart/caffeine.desktop"
#!/bin/bash
# adapta theme
sudo apt-add-repository ppa:tista/adapta
sudo apt install adapta-gtk-theme
# papirus icons
sudo add-apt-repository ppa:papirus/papirus
sudo apt install papirus-icon-theme
# paper icons (for mouse)
sudo add-apt-repository -u ppa:snwh/ppa
sudo apt install paper-icon-theme
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment