Skip to content

Instantly share code, notes, and snippets.

@kokoscript
Created March 3, 2018 06:02
Show Gist options
  • Save kokoscript/8264dee044d9dfab1d6b2bae6c3fd277 to your computer and use it in GitHub Desktop.
Save kokoscript/8264dee044d9dfab1d6b2bae6c3fd277 to your computer and use it in GitHub Desktop.
# This is my personal setup script for whenever I decide to switch distros. As you can see, I typically stick to Ubuntu-based distros.
# A lot of this script may or may not be to your liking - I mainly provide this to those who are curious about what I use.
echo "Adding apt repos"
sudo add-apt-repository ppa:papirus/papirus
sudo add-apt-repository ppa:tista/adapta
sudo add-apt-repository ppa:maarten-baert/simplescreenrecorder
sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo add-apt-repository ppa:webupd8team/java
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
# Install packages
sudo dpkg --add-architecture i386
sudo apt update
echo "Now installing the bulk of the packages, grab a pizza or something"
# TODO: maybe remove kdevelop + adapta-kde since I no longer use kde??
sudo apt install chromium-browser adapta-gtk-theme adapta-kde keepassx syncthing plank redshift kdevelop htop zsh gimp kdenlive audacity blender tilem krita vlc librecad simplescreenrecorder xmp milkytracker gparted grub-customizer git inkscape papirus-icon-theme dolphin-emu mednaffe ghex winehq-stable vim steam teeworlds neverball oracle-java9-installer
sudo apt install --no-install-recommends gnome-calculator gnome-disk-utility winetricks gnome-twitch
# You may want to keep firefox, I use chromium so I just remove it
sudo apt purge firefox pidgin parole orage
sudo apt --purge autoremove
echo "Time for some zsh"
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment