diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 15:52:47 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 15:52:47 +0200 |
commit | 2b14b00c0d72a2db3e9828c62d131f8cb41e3a95 (patch) | |
tree | 2ef9bd88deaed4a92c4aeb6699c07728b7f8f656 | |
parent | e5ce39bca66f1b6827232d420ed041645ef65d9c (diff) |
polybar: exclude ignored AUR pkgs from update count
-rwxr-xr-x | .config/polybar/extra/updates-pacman-aurhelper.sh | 4 | ||||
-rwxr-xr-x | .local/bin/aurignored | 16 |
2 files changed, 19 insertions, 1 deletions
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" diff --git a/.local/bin/aurignored b/.local/bin/aurignored new file mode 100755 index 0000000..2eaabd8 --- /dev/null +++ b/.local/bin/aurignored @@ -0,0 +1,16 @@ +#!/bin/bash + +# Get list of ignored pkgs +function ignored() { + pkgs="$(grep IgnorePkg /etc/pacman.conf | sed -e 's/IgnorePkg =//' -e 's/#.*//')" + grps="$(grep IgnoreGroup /etc/pacman.conf | sed -e 's/IgnoreGroup =//' -e 's/#.*//')" + [[ -n $grps ]] && pkgs="$pkgs $(pacman -Sgq $grps)" + + echo -n "$pkgs" | tail -n -1 +} + +# Return only AUR pkgs +for pkg in $(ignored) +do + pacman -Si $pkg &>/dev/null || echo "$pkg" +done |