Files
Hyprcachy/omarchy/scripts/omarchy-pkg-missing
2026-01-04 20:49:31 +01:00

10 lines
104 B
Bash
Executable File

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