gianmarco
/
dotfiles
Archived
1
0
Fork 0

Changed the updates module to hide if there's less than 100 updates pending

master
Gianmarco Gargiulo 2021-11-01 19:13:07 +01:00
parent 7a9a08af38
commit b09f9f5906
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ while true; do
while (( UPDATES > 0 )); do
if (( UPDATES == 1 )); then
echo " $UPDATES"
elif (( UPDATES > 20 )); then
elif (( UPDATES > 100 )); then
echo " $UPDATES"
fi
sleep 10