From 2b14b00c0d72a2db3e9828c62d131f8cb41e3a95 Mon Sep 17 00:00:00 2001 From: adam <56338480+adastx@users.noreply.github.com> Date: Sun, 9 Oct 2022 15:52:47 +0200 Subject: polybar: exclude ignored AUR pkgs from update count --- .config/polybar/extra/updates-pacman-aurhelper.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '.config/polybar/extra/updates-pacman-aurhelper.sh') diff --git a/.config/polybar/extra/updates-pacman-aurhelper.sh b/.config/polybar/extra/updates-pacman-aurhelper.sh index a785cd7..83425f5 100755 --- a/.config/polybar/extra/updates-pacman-aurhelper.sh +++ b/.config/polybar/extra/updates-pacman-aurhelper.sh @@ -13,7 +13,9 @@ if ! updates_aur=$(paru -Qum 2> /dev/null | wc -l); then updates_aur=0 fi -updates=$((updates_arch + updates_aur)) +aur_ignored=$(aurignored | wc -l) + +updates=$((updates_arch + updates_aur - $aur_ignored)) if [ "$updates" -gt 0 ]; then echo " $updates" -- cgit v1.2.3-70-g09d2