From b573a37e339faa17b3d849b506d31974157ec6cc Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 17 Feb 2026 12:03:04 +0100 Subject: [PATCH] Ensure packages available on both AUR and other repos are installed from AUR Closes #4578, #4577, #4581 --- bin/omarchy-pkg-aur-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-pkg-aur-install b/bin/omarchy-pkg-aur-install index 8fb849c0..8157209d 100755 --- a/bin/omarchy-pkg-aur-install +++ b/bin/omarchy-pkg-aur-install @@ -19,8 +19,8 @@ fzf_args=( 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 + # Add aur/ prefix to each package name and convert to space-separated for yay + echo "$pkg_names" | sed 's/^/aur\//' | tr '\n' ' ' | xargs yay -S --noconfirm sudo updatedb omarchy-show-done fi