Files
omarchy/bin/omarchy-pkg-drop
2026-01-05 10:17:32 +01:00

10 lines
213 B
Bash
Executable File

#!/bin/bash
# Remove all the named packages from the system if they're installed (otherwise ignore).
for pkg in "$@"; do
if pacman -Q "$pkg" &>/dev/null; then
sudo pacman -Rns --noconfirm "$pkg"
fi
done