#!/bin/sh type pacman > /dev/null 2>&1 || { echo >&2 "I require pacman but it's not installed. Aborting."; exit 1; } echo "Installing packages..." pacman -S git pacman -S tmux pacman -S zsh pacman -S powerline pacman -S nvim exit 0