dotfiles/templates/bin/waybar-void-update-checker

13 lines
317 B
Text
Raw Normal View History

2025-06-04 11:30:50 -05:00
#!/bin/sh
set -e
info="$(xbps-install -Mun)"
2025-06-04 11:53:52 -05:00
[ -z $info ] && exit
2025-06-04 11:30:50 -05:00
2025-06-04 17:42:39 -05:00
PKG_COUNT="$(echo "$info" | wc -l)"
2025-06-04 11:30:50 -05:00
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", "class": "warning"}'