8 lines
184 B
Bash
Executable file
8 lines
184 B
Bash
Executable file
#!/bin/sh
|
|
. "$HOME/.local/libexec/statusbar/colors"
|
|
|
|
icon=""
|
|
|
|
num="$(\xbps-install -Sun | grep -c "update")"
|
|
[ "$num" -gt 0 ] && printf "%b" "<span $big>$icon</span> $num\n"
|
|
exit 0
|