mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
29 lines
897 B
Plaintext
29 lines
897 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
format() {
|
||
|
if [ "$1" -eq 0 ]; then
|
||
|
echo '-'
|
||
|
else
|
||
|
echo "$1"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
if ! updates_arch="$(checkupdates | wc -l)"; then
|
||
|
updates_arch=0
|
||
|
fi
|
||
|
|
||
|
if ! updates_aur="$(paru -Qum 2>/dev/null | wc -l)"; then
|
||
|
updates_aur=0
|
||
|
fi
|
||
|
|
||
|
updates="$((updates_arch + updates_aur))"
|
||
|
|
||
|
if [ "$updates" -gt 0 ]; then
|
||
|
#echo " ($(format $updates_arch)/$(format $updates_aur))"
|
||
|
# echo " ($(format $updates_arch)/$(format $updates_aur))"
|
||
|
# dunstify -i "/usr/share/icons/breeze-dark/mimetypes/24/package-x-generic.svg" " Outdated Packages: ($(format $updates_arch)/$(format $updates_aur))"
|
||
|
# dunstify -i "/usr/share/icons/breeze-dark/mimetypes/24/package-x-generic.svg" "Outdated Packages: ($(format $updates_arch)/$(format $updates_aur))"
|
||
|
echo "%{B#ecbe7b} %{B-}%{B#464b55} ($(format $updates_arch)/$(format $updates_aur)) %{B-}"
|
||
|
else
|
||
|
echo
|
||
|
fi
|