diff options
author | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 16:17:37 +0200 |
---|---|---|
committer | adam <56338480+adastx@users.noreply.github.com> | 2022-10-09 16:17:37 +0200 |
commit | 1410f9ce633da62e431b8ed977f7a066cc0db72b (patch) | |
tree | 642d2d4a3ce14e4d4a30c33167e691233c8e97f4 /.config/polybar/extra/updates-pacman-aurhelper.sh | |
parent | 4525535f3bbd9efa4b4a0a84aa61706d1cb63924 (diff) |
polybar: minor bugfix in updates script
Diffstat (limited to '.config/polybar/extra/updates-pacman-aurhelper.sh')
-rwxr-xr-x | .config/polybar/extra/updates-pacman-aurhelper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/polybar/extra/updates-pacman-aurhelper.sh b/.config/polybar/extra/updates-pacman-aurhelper.sh index 83425f5..c74ff0d 100755 --- a/.config/polybar/extra/updates-pacman-aurhelper.sh +++ b/.config/polybar/extra/updates-pacman-aurhelper.sh @@ -13,7 +13,7 @@ if ! updates_aur=$(paru -Qum 2> /dev/null | wc -l); then updates_aur=0 fi -aur_ignored=$(aurignored | wc -l) +aur_ignored=$($HOME/.local/bin/aurignored | wc -l) updates=$((updates_arch + updates_aur - $aur_ignored)) |