Last active
March 25, 2018 09:57
-
-
Save DavidToca/0cf29abac087f76a4f98bae9e649fc6c to your computer and use it in GitHub Desktop.
setup manjaro
This file contains hidden or 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
#!/bin/bash | |
# update package index | |
echo "----------------------UPDATING PACKAGES----------------" | |
sudo pacman -Syu --noconfirm | |
echo "----------------------INSTALLING GOOGLE CHROME--------------------" | |
yaourt google-chrome -S --noconfirm | |
echo "----------------------INSTALLING TERMINATOR ---------" | |
yaourt terminator -S --noconfirm | |
echo "----------------------INSTALLING FRANZ--------------------" | |
yaourt franz-bin -S --noconfirm | |
echo "----------------------INSTALLING ZSH-----------" | |
sudo pacman -S zsh --noconfirm | |
echo "----------------------INSTALLING TMUX------------" | |
yaourt -S tmux --noconfirm | |
echo "----------------------INSTALLING VI------------" | |
yaourt -S vi --noconfirm | |
echo "----------------------INSTALLING EMACS------------" | |
yaourt -S emacs --noconfirm | |
echo "----------------------INSTALLING TMUXP------------" | |
sudo pip install tmuxp | |
echo "----------------------INSTALLING DOCKER----------" | |
yaourt -S docker-git --noconfirm | |
echo "----------------------CONFIGURE DOCKER-----------" | |
echo "enable docker" | |
sudo systemctl enable docker | |
echo "start docker" | |
sudo systemctl start docker | |
echo "add current user to group" | |
current=${USER} | |
sudo gpasswd -a $current docker | |
sudo systemctl restart docker | |
# launch apps | |
echo "----------------------LAUNCHING CHROME--------------" | |
google-chrome-stable & | |
echo "----------------------LAUNCHING FRANZ---------------" | |
franz-bin & | |
echo "----------------------INSTALLING OH MY ZSH----------" | |
# install oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment