|
@ -10,6 +10,9 @@ cd $HOME |
|
|
|
|
|
|
|
|
# Install the minimal toolset to bootstrap out process |
|
|
# Install the minimal toolset to bootstrap out process |
|
|
sudo pacman -Syu |
|
|
sudo pacman -Syu |
|
|
|
|
|
# Install the development requirements so we can use aur packages |
|
|
|
|
|
sudo pacman -S --needed base-devel |
|
|
|
|
|
# System basics for everything after this point |
|
|
sudo pacman -S curl wget git zsh vim tmux |
|
|
sudo pacman -S curl wget git zsh vim tmux |
|
|
|
|
|
|
|
|
# Install OhMyZSH |
|
|
# Install OhMyZSH |
|
@ -18,9 +21,26 @@ cd $HOME/build/oh-my-zsh |
|
|
curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o install.sh |
|
|
curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o install.sh |
|
|
chmod +x install.sh |
|
|
chmod +x install.sh |
|
|
$env sh install.sh |
|
|
$env sh install.sh |
|
|
|
|
|
cd $HOME |
|
|
|
|
|
|
|
|
# Install Other Essential Tools |
|
|
|
|
|
|
|
|
# Install package-query for yaourt |
|
|
|
|
|
cd $HOME/build |
|
|
|
|
|
git clone https://aur.archlinux.org/package-query.git |
|
|
|
|
|
cd package-query |
|
|
|
|
|
makepkg -sri |
|
|
|
|
|
|
|
|
|
|
|
# Install yaourt |
|
|
|
|
|
cd $HOME/build |
|
|
|
|
|
git clone https://aur.archlinux.org/yaourt.git |
|
|
|
|
|
cd yaourt |
|
|
|
|
|
makepkg -sri |
|
|
|
|
|
|
|
|
|
|
|
# Do a proper update including aur |
|
|
|
|
|
cd $HOME |
|
|
|
|
|
yaourt -Syua |
|
|
|
|
|
|
|
|
|
|
|
# Install Other Essential Tools |
|
|
|
|
|
yaourt -S lsb-release screenfetch |
|
|
|
|
|
|
|
|
# Return to where we started |
|
|
# Return to where we started |
|
|
cd #opwd |
|
|
|
|
|
|
|
|
cd $opwd |