-
-
Save janmraz/62c645c3ae3e0a1d761b8fd1a4062be8 to your computer and use it in GitHub Desktop.
Manjaro Install script
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
| # Aliases | |
| alias paci="sudo pacman -S" | |
| alias pacr="sudo pacman -R" | |
| alias pacu="sudo pacman -U" | |
| alias sys-update="sudo pacman -Syyu" | |
| alias key-update="sudo pacman-key --init && sudo pacman-key --populate archlinux manjaro && sudo pacman-key --refresh-keys" | |
| # Prepare pacman | |
| sudo pacman-key --init && sudo pacman-key --populate archlinux manjaro && sudo pacman-key --refresh-keys | |
| # Remove packages | |
| sudo pacman -R empathy accerciser gnome-chess gnome-sudoku gnome-tetravex polari five-or-more four-in-a-row steam-native ipython hitori gnome-klotski steam quadrapassel gnome-nibbles aisleriot lightsoff gnome-mahjongg gnome-mines | |
| # Upgrade all | |
| sudo pacman -Syyu | |
| # Install zsh & oh-my-zsh | |
| sudo pacman -S git zsh | |
| wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh | |
| chsh -s $(which zsh) | |
| # Do logout & login | |
| # Install official packages | |
| sudo pacman -S mysql pidgin plank openssh playonlinux wine virtualbox tk libreoffice-still-pt-BR nethogs python2 python2-pip docker | |
| # Install community packages | |
| yaourt -S google-chrome | |
| yaourt -S sublime-text-dev | |
| yaourt -S ngrok | |
| # Install custom softwares | |
| curl https://raw.githubusercontent.com/creationix/nvm/v0.23.3/install.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment