dotfiles/.config/yadm/bootstrap.d/01-paru
2025-02-21 07:46:27 +00:00

11 lines
186 B
Bash
Executable file

#!/bin/bash
if pacman -Q paru; then
exit 0
fi
sudo pacman -S --needed base-devel
git clone https://aur.archlinux.org/paru.git /tmp/paru
cd /tmp/paru
makepkg -si
cd
rm -rf /tmp/paru