dotfiles/.chezmoiscripts/run_once_before_00-aur.sh.tmpl
punkfairie 800ee5500b
Update .chezmoi.toml
Update .chezmoiexternals/awesomewm.toml
Update .chezmoiexternals/rofi.toml
Update .chezmoiexternals/zathura.toml
Update .chezmoiscripts/00-aur.sh
2024-04-21 10:05:25 -07:00

12 lines
248 B
Cheetah

{{- if (and (eq .chezmoi.osRelease.id "arch") (not (lookPath "yay"))) -}}
#!/usr/bin/env bash
sudo pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay-bin.git
cd yay-bin
makepkg -si
cd ..
rm -rf yay-bin
yay -Syu
{{- end -}}