.dotfiles/.config/polybar/scripts/arch-updates.sh

8 lines
123 B
Bash
Raw Normal View History

#!/bin/sh
pkg_updates_count=$(pacman -Qu | wc -l)
if [ $((pkg_updates_count)) -gt 0 ]
then
echo $pkg_updates_count
fi