13 lines
305 B
Text
13 lines
305 B
Text
![]() |
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
info="$(xbps-install -Mun)"
|
||
|
|
||
|
PKG_COUNT="$(echo "$info" | wc -l)"
|
||
|
[ $PKG_COUNT -eq 0 ] && exit
|
||
|
|
||
|
DL_SIZE="$(echo "$info" | awk '{s+=$6}END{print s}' | numfmt --to=iec-i)B"
|
||
|
|
||
|
echo '{"text": "\uf468 '"$PKG_COUNT"'", "tooltip": "'"$PKG_COUNT"' packages have updates; '"$DL_SIZE"' download"}'
|