From b3dd14a03805a54f04453103237276a8f433759d Mon Sep 17 00:00:00 2001 From: Andrej Benz Date: Tue, 17 Feb 2026 11:53:39 +0100 Subject: [PATCH] fix(aur): add -a flag to yay command to assume AUR packages (#4581) --- bin/omarchy-pkg-aur-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-pkg-aur-install b/bin/omarchy-pkg-aur-install index 8fb849c0..acac158a 100755 --- a/bin/omarchy-pkg-aur-install +++ b/bin/omarchy-pkg-aur-install @@ -20,7 +20,7 @@ pkg_names=$(yay -Slqa | fzf "${fzf_args[@]}") if [[ -n "$pkg_names" ]]; then # Convert newline-separated selections to space-separated for yay - echo "$pkg_names" | tr '\n' ' ' | xargs yay -S --noconfirm + echo "$pkg_names" | tr '\n' ' ' | xargs yay -S -a --noconfirm sudo updatedb omarchy-show-done fi