arch-hyprland-setup/bin/omarchy-pkg-remove
2025-08-07 18:19:16 -04:00

10 lines
230 B
Bash
Executable File

#!/bin/bash
pkg_name=$(yay -Qqe | fzf --multi --preview 'yay -Qi {1}' --preview-window=down:75%)
if [[ -n "$pkg_name" ]]; then
yay -Rns --noconfirm "$pkg_name"
sudo updatedb
~/.local/share/omarchy/bin/omarchy-show-done
fi