dotfiles/uWu/polybar/scripts/pacup.sh

10 lines
125 B
Bash
Raw Normal View History

2021-09-04 10:59:31 -05:00
#!/bin/bash
updates=$(pacman -Qu | wc -l)
if [ -z "$updates" ]; then
echo "Fully Updated"
else
echo "$updates"
fi