Skip to content

Instantly share code, notes, and snippets.

@DavidToca
Last active March 25, 2018 09:57
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 DavidToca/0cf29abac087f76a4f98bae9e649fc6c to your computer and use it in GitHub Desktop.
Save DavidToca/0cf29abac087f76a4f98bae9e649fc6c to your computer and use it in GitHub Desktop.
setup manjaro
#!/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