mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 12:37:46 +00:00
10 lines
104 B
Bash
Executable File
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
|