dotfiles/onedark/polybar/scripts/pacup.sh

10 lines
125 B
Bash
Raw Normal View History

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