mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-07-04 22:56:19 +00:00
9 lines
104 B
Bash
9 lines
104 B
Bash
#!/bin/sh
|
|
|
|
value=$(pacman -Qu | wc -l)
|
|
|
|
if [ "$value" != "0" ]; then
|
|
echo " ";
|
|
else
|
|
echo "";
|
|
fi
|