aboutsummaryrefslogtreecommitdiff
path: root/modules/voidupdates
blob: 229fd423c71434c48e1c4885da848ad5c1af573c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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