aboutsummaryrefslogtreecommitdiff
path: root/modules/voidupdates
diff options
context:
space:
mode:
authorArchie Hilton <archie.hilton1@gmail.com>2019-10-25 12:43:29 +0100
committerGitHub <noreply@github.com>2019-10-25 12:43:29 +0100
commit7cecb2d92b9aa2aa981dd9b2847f3624189f93e8 (patch)
tree73ddc9698c52f85c4665287fd352ac74fa770357 /modules/voidupdates
parent570963e08c2b95b2ba0ba97dfed401dd0f06a4e3 (diff)
parentfe7633cd1b14275540dfba051b67c6bcef03ecc7 (diff)
Merge pull request #3 from thytom/parallel
Parallel stuff + New modules
Diffstat (limited to 'modules/voidupdates')
-rwxr-xr-xmodules/voidupdates16
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