Files
arthur-os/bin/omarchy-pkg-add
T

8 lines
77 B
Bash
Executable File

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