dotfiles/uWu/polybar/scripts/pacup.sh
2021-09-04 21:29:31 +05:30

10 lines
125 B
Bash
Executable file

#!/bin/bash
updates=$(pacman -Qu | wc -l)
if [ -z "$updates" ]; then
echo "Fully Updated"
else
echo "$updates"
fi