From 237470c8f45190b213e3a173ce6ae1a74b3e11fe Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sun, 14 Mar 2010 01:55:33 +0100 Subject: API: transform widgets namespace table to a directory --- widgets/pkg.lua | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 widgets/pkg.lua (limited to 'widgets/pkg.lua') diff --git a/widgets/pkg.lua b/widgets/pkg.lua new file mode 100644 index 0000000..fa2375b --- /dev/null +++ b/widgets/pkg.lua @@ -0,0 +1,41 @@ +--------------------------------------------------- +-- Licensed under the GNU General Public License v2 +-- * (c) 2010, Adrian C. +--------------------------------------------------- + +-- {{{ Grab environment +local io = { popen = io.popen } +local math = { max = math.max } +local setmetatable = setmetatable +-- }}} + + +-- Pkg: provides number of pending updates on GNU/Linux +module("vicious.widgets.pkg") + + +-- {{{ Packages widget type +local function worker(format, dist) + -- Initialise counters + local updates = 0 + local manager = { + ["Arch"] = { cmd = "pacman -Qu" }, + ["Arch S"] = { cmd = "yes | pacman -Sup", sub = 2 }, + ["Debian"] = { cmd = "apt-show-versions -u -b" }, + ["Fedora"] = { cmd = "yum list updates", sub = 3 } + } + + -- Check if updates are available + local pkg = manager[dist] + local f = io.popen(pkg.cmd) + + for line in f:lines() do + updates = updates + 1 + end + f:close() + + return {pkg.sub and math.max(updates-pkg.sub, 0) or updates} +end +-- }}} + +setmetatable(_M, { __call = function(_, ...) return worker(...) end }) -- cgit v1.2.3