From ddef52c192f502c6dff7a02860c46d295eba0d93 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 9 Sep 2025 14:54:42 +0200 Subject: [PATCH] We don't need this to run every time --- bin/omarchy-pkg-install | 1 - bin/omarchy-pkg-remove | 1 - 2 files changed, 2 deletions(-) diff --git a/bin/omarchy-pkg-install b/bin/omarchy-pkg-install index 3691646..c654e17 100755 --- a/bin/omarchy-pkg-install +++ b/bin/omarchy-pkg-install @@ -17,6 +17,5 @@ pkg_names=$(pacman -Slq | fzf "${fzf_args[@]}") if [[ -n "$pkg_names" ]]; then # Convert newline-separated selections to space-separated for yay echo "$pkg_names" | tr '\n' ' ' | xargs sudo pacman -S --noconfirm - sudo updatedb omarchy-show-done fi diff --git a/bin/omarchy-pkg-remove b/bin/omarchy-pkg-remove index 5408aa9..63c6147 100755 --- a/bin/omarchy-pkg-remove +++ b/bin/omarchy-pkg-remove @@ -17,6 +17,5 @@ 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 sudo pacman -Rns --noconfirm - sudo updatedb omarchy-show-done fi