Last active
September 15, 2018 10:37
-
-
Save mymindwentblvnk/ceeff7a79ea57aab4776e1fe5f8b68dc to your computer and use it in GitHub Desktop.
Installation Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install vim | |
sudo apt install silversearcher-ag | |
sudo apt install git | |
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim | |
sudo apt install python3-dev | |
sudo apt install python-virtualenv | |
sudo apt install tmux | |
sudo apt install zsh | |
sudo apt install postgresql | |
# Heroku | |
wget -qO- https://cli-assets.heroku.com/install-ubuntu.sh | sh | |
# SSH | |
ssh-keygen -t rsa -b 4096 -C "<YOUR_EMAIL_HERE>" | |
cat ~/.ssh/id_rsa.pub | |
# Dotfiles | |
mkdir ~/src | |
cd ~/src | |
git clone [email protected]:michael-123/Dotfiles.git | |
cd Dotfiles/ | |
sh symlink.sh | |
# Ctags for Taglist (Vim) | |
sudo apt install exuberant-ctags | |
# Pinta | |
sudo apt install pinta | |
# Gimp | |
sudo add-apt-repository ppa:otto-kesselgulasch/gimp | |
sudo apt-get update | |
sudo apt install gimp | |
sudo apt-get install gimp-plugin-registry | |
# Spotify | |
snap install spotify | |
# Slack | |
snap install slack | |
# Docker | |
sudo apt install docker.io | |
# Vagrant | |
sudo apt install vagrant | |
sudo apt install virtualbox | |
# Keepass | |
sudo apt install keepassx | |
# Dropbox | |
sudo apt-get install nautilus-dropbox | |
# Gnome Tweak Tool | |
sudo apt-get install gnome-tweak-tool | |
# Change hostname to <NEW_HOSTNAME> | |
sudo vim /etc/hostname | |
sudo vim /etc/hosts | |
sudo hostname <NEW_HOSTNAME> | |
# Google Chrome (see https://askubuntu.com/questions/79280/how-to-install-chrome-browser-properly-via-command-line) | |
sudo apt-get install libxss1 libappindicator1 libindicator7 | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb | |
sudo dpkg -i google-chrome*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment