Initial commit

This commit is contained in:
2026-07-02 15:56:21 +02:00
commit 4529a3c472
92 changed files with 13593 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Ensure the yay AUR helper is present (build yay-bin from the AUR if not).
if command -v yay >/dev/null; then
info "yay already installed"
return 0 2>/dev/null || exit 0
fi
sudo pacman -S --needed --noconfirm git base-devel
tmp="$(mktemp -d)"
git clone https://aur.archlinux.org/yay-bin.git "$tmp/yay-bin"
( cd "$tmp/yay-bin" && makepkg -si --noconfirm )
rm -rf "$tmp"