dwmbar/modules/voidupdates
2019-10-24 20:09:35 +01:00

16 lines
238 B
Bash
Executable file

#!/bin/bash
# Prints the number of updates for Void Linux
PREFIX=' Updates: '
get_updates()
{
if ! updates=$(xbps-install -Mun 2> /dev/null | wc -l ); then
updates=0
fi
echo "$PREFIX$updates"
}
get_updates