Skip to content

Instantly share code, notes, and snippets.

@janmraz
Forked from gabrielmoreira/manjaro-install.sh
Last active April 25, 2020 16:07
Show Gist options
  • Select an option

  • Save janmraz/62c645c3ae3e0a1d761b8fd1a4062be8 to your computer and use it in GitHub Desktop.

Select an option

Save janmraz/62c645c3ae3e0a1d761b8fd1a4062be8 to your computer and use it in GitHub Desktop.
Manjaro Install script
# 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