mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-07 05:19:07 -04:00
10 lines
215 B
Bash
10 lines
215 B
Bash
#!/usr/bin/env bash
|
|
pkg_updates() {
|
|
updates=$(pacman -Qu | wc -l)
|
|
aurupdates=$(paru -Qua | wc -l)
|
|
updates=$((updates + aurupdates))
|
|
if [ $updates -gt 0 ]; then
|
|
echo -n " $updates"
|
|
fi
|
|
}
|
|
pkg_updates
|