2023-02-09 14:49:10 +01:00
|
|
|
#!/bin/sh
|
2024-02-03 17:52:33 +01:00
|
|
|
. "$HOME/.local/libexec/statusbar/colors"
|
2023-04-11 10:30:27 +02:00
|
|
|
|
2024-01-15 22:25:14 +01:00
|
|
|
icon=""
|
2023-04-11 10:30:27 +02:00
|
|
|
|
2024-01-17 12:37:27 +01:00
|
|
|
num="$(\xbps-install -Sun | grep -c "update")"
|
2024-02-03 17:52:33 +01:00
|
|
|
[ "$num" -gt 0 ] && printf "%b" "<span $big>$icon</span> $num\n"
|
2024-01-22 07:33:58 +01:00
|
|
|
exit 0
|