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