Last active
July 26, 2018 16:26
-
-
Save seesleestak/1aafeeff88f6efbb170647f9d6e5eec7 to your computer and use it in GitHub Desktop.
Init new Arch install
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/sh | |
| # Install a whole bunch of programs | |
| sudo pacman -S \ | |
| chromium \ | |
| dunst \ | |
| feh \ | |
| git \ | |
| gvim \ | |
| i3 \ | |
| imagemagick \ | |
| neofetch \ | |
| network-manager-applet \ | |
| networkmanager \ | |
| nodejs \ | |
| npm \ | |
| pavucontrol \ | |
| playerctl \ | |
| powertop \ | |
| pulseaudio \ | |
| ranger \ | |
| ripgrep \ | |
| rxvt-unicode \ | |
| scrot \ | |
| stow \ | |
| telegram-desktop \ | |
| tmux \ | |
| ttf-dejavu \ | |
| ttf-freefont \ | |
| ttf-liberation \ | |
| urxvt-perls \ | |
| xorg-server \ | |
| xorg-xinit \ | |
| xorg-xrandr \ | |
| zsh \ | |
| # Install global npm packages | |
| sudo npm i -g hiflow ripsr prettier vtop eslint lerna serverless | |
| # Create repos dir | |
| mkdir ~/working | |
| # Clone some stuff from AUR | |
| mkdir ~/aur && cd ~/aur | |
| git clone https://aur.archlinux.org/polybar.git && cd polybar && makepkg -si && cd .. | |
| git clone https://aur.archlinux.org/spotify.git && cd spotify && makepkg -si && cd .. | |
| git clone https://aur.archlinux.org/snapd.git && cd snapd && makepkg -si && cd .. | |
| git clone https://aur.archlinux.org/dropbox.git && cd dropbox && makepkg -si && cd ~ | |
| # Install slack with snap instead of AUR | |
| sudo snap install slack --classic |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment