mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 22:19:45 +00:00
17 lines
238 B
Text
17 lines
238 B
Text
|
#!/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
|