Skip to content

Instantly share code, notes, and snippets.

@LorenzBung
Last active June 28, 2021 17:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LorenzBung/6cf1b8bfca1fddd8c12eb6ede02c691f to your computer and use it in GitHub Desktop.
Save LorenzBung/6cf1b8bfca1fddd8c12eb6ede02c691f to your computer and use it in GitHub Desktop.
A short shell script to be executed after installing a new ubuntu system.
#!/bin/bash
# Install programs
sudo apt update
sudo apt upgrade
sudo apt install -y curl git gnome-tweak-tool vim xfce4-terminal htop wine-stable zathura python3 python3-pip openjdk-8-jre;
# Add IntelliJ IDEA PPA and install it
sudo add-apt-repository -y ppa:mmk2410/intellij-idea
sudo apt update
sudo apt install -y intellij-idea-community
# Move the window buttons to the left
gsettings set org.gnome.desktop.wm.preferences button-layout close,minimize,maximize:;
# Add Rust language support to vim
git clone https://github.com/rust-lang/rust.vim ~/.vim/pack/plugins/start/rust.vim
# Make git save credentials
git config --global credential.helper store
# Cleanup
sudo apt autoremove -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment