From 85ae438fbc238fe56bcb1c10a12ec52365053cb6 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sat, 26 Feb 2022 20:31:12 +0530 Subject: dwmbar dotfiles --- modules/voidupdates | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 modules/voidupdates (limited to 'modules/voidupdates') diff --git a/modules/voidupdates b/modules/voidupdates new file mode 100755 index 0000000..9411637 --- /dev/null +++ b/modules/voidupdates @@ -0,0 +1,18 @@ +#!/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" +} + +if [ $(( 10#$(date '+%M') % 3 )) -eq 0 ] && [ $(( 10#$(date '+%S') )) -eq 5 ]; then + get_updates +fi -- cgit v1.2.3-59-g8ed1b