aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.lua2
-rw-r--r--pkg.lua (renamed from pacman.lua)13
2 files changed, 7 insertions, 8 deletions
diff --git a/init.lua b/init.lua
index 34cf10c..0f41ef3 100644
--- a/init.lua
+++ b/init.lua
@@ -39,7 +39,7 @@ require("vicious.mdir")
require("vicious.gmail")
require("vicious.entropy")
require("vicious.org")
-require("vicious.pacman")
+require("vicious.pkg")
require("vicious.mpd")
require("vicious.volume")
require("vicious.weather")
diff --git a/pacman.lua b/pkg.lua
index 8734c2c..917b893 100644
--- a/pacman.lua
+++ b/pkg.lua
@@ -7,23 +7,22 @@
local tonumber = tonumber
local io = { popen = io.popen }
local setmetatable = setmetatable
---local string = { match = string.match }
-- }}}
--- Pacman: provides number of pending updates on Arch Linux
-module("vicious.pacman")
+-- Pkg: provides number of pending updates on GNU/Linux
+module("vicious.pkg")
--- {{{ Pacman widget type
+-- {{{ Packages widget type
local function worker(format)
-- Initialise counters
local updates = 0
- -- Check if updates are available
+ -- Check if updates are available on Arch
local f = io.popen("pacman -Qu")
- -- Exclude IgnorePkg and count deps
- --local f = io.popen("pacman -Sup")
+ --- Exclude IgnorePkg and count deps
+ ---local f = io.popen("pacman -Sup")
for line in f:lines() do
updates = updates + 1