Files
omarchy/bin/omarchy-pkg-present
2025-08-31 09:21:02 +02:00

8 lines
87 B
Bash
Executable File

#!/bin/bash
for pkg in "$@"; do
pacman -Q "$pkg" &>/dev/null || exit 1
done
exit 0