diff options
Diffstat (limited to 'modules/voidupdates')
-rwxr-xr-x | modules/voidupdates | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/voidupdates b/modules/voidupdates new file mode 100755 index 0000000..229fd42 --- /dev/null +++ b/modules/voidupdates @@ -0,0 +1,16 @@ +#!/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 |