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
# Remove packages
sudo pamac remove evolution
sudo pamac remove lollypop
sudo pamac remove empathy
sudo pamac remove gnome-chess
sudo pamac remove gnome-sudoku
sudo pamac remove gnome-tetravex
sudo pamac remove polari
sudo pamac remove five-or-more f
sudo pamac remove our-in-a-row
sudo pamac remove ipython hitori gnome-klotski quadrapassel gnome-nibbles aisleriot lightsoff gnome-mahjongg gnome-mines iagno gnome-robots tali swell-foop
# Upgrade all
sudo pacman -Syyu
# install xkill command :)
sudo pamac install xorg-xkill
sudo -S snap install spotify
# Install yay
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
# Install official packages
sudo pacman -S --noconfirm mysql openssh playonlinux wine tk libreoffice docker synapse samba thunderbird
# Install community packages
yaourt -S --noconfirm google-chrome sublime-text-dev ngrok fasd nodejs yarn gcc make xclip
# Enable docker without sudo
sudo groupadd docker
sudo gpasswd -a ${USER} docker
sudo systemctl enable docker
sudo systemctl start docker
newgrp docker
# Install virtualbox
sudo pacman -S linux-headers-$(uname -r)
sudo pacman -S virtualbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment