#!/bin/bash sudo pacman -S base-devel git --needed --noconfirm if ! command -v paru &> /dev/null; then echo "Installing paru..." TEMP_DIR=`mktemp -d` git clone https://aur.archlinux.org/paru.git $TEMP_DIR/paru cd $TEMP_DIR/paru makepkg -si --noconfirm fi sudo -v paru -S --noconfirm --needed - < ./data/packages.txt sudo chsh -s /bin/fish $USER