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