From d2bd1b47b6133e1e297a08bc28d55f2b6bae3146 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 24 Aug 2025 18:02:09 +0200 Subject: [PATCH] This doesn't need yay --- bin/omarchy-pkg-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-pkg-remove b/bin/omarchy-pkg-remove index d7a73ce7..5408aa9b 100755 --- a/bin/omarchy-pkg-remove +++ b/bin/omarchy-pkg-remove @@ -16,7 +16,7 @@ pkg_names=$(yay -Qqe | fzf "${fzf_args[@]}") if [[ -n "$pkg_names" ]]; then # Convert newline-separated selections to space-separated for yay - echo "$pkg_names" | tr '\n' ' ' | xargs yay -Rns --noconfirm + echo "$pkg_names" | tr '\n' ' ' | xargs sudo pacman -Rns --noconfirm sudo updatedb omarchy-show-done fi