#!/usr/bin/env sh
pacman -Syy
pacman -S --noconfirm --needed fish sudo
is_root="$(test "$(whoami)" == 'root' && echo "1" || echo "0")"
ls -la "$(dirname "$0")"
for file in "$(dirname "$0")/provision.d"/*; do
test -d "$file" && continue
echo "Runnning $file..."
if <<< "$file" grep -q "AS_ROOT"; then
if [ "$is_root" == "1" ]; then
"$file"
else
sudo "$file"
fi
sudo -u daniel "$file"
done