From 9695e0fea045ec8b0379fae23e396a050d357151 Mon Sep 17 00:00:00 2001 From: mutlusun Date: Wed, 25 Jan 2017 17:53:03 +0100 Subject: [PATCH] move mboxc widget to match new layout --- widgets/{mboxc.lua => mboxc_all.lua} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename widgets/{mboxc.lua => mboxc_all.lua} (94%) diff --git a/widgets/mboxc.lua b/widgets/mboxc_all.lua similarity index 94% rename from widgets/mboxc.lua rename to widgets/mboxc_all.lua index a79d1f4..8743ebb 100644 --- a/widgets/mboxc.lua +++ b/widgets/mboxc_all.lua @@ -12,7 +12,7 @@ local string = { find = string.find } -- Mboxc: provides the count of total, old and new messages in mbox files -- vicious.widgets.mboxc -local mboxc = {} +local mboxc_all = {} -- {{{ Mbox count widget type @@ -55,4 +55,4 @@ local function worker(format, warg) end -- }}} -return setmetatable(mboxc, { __call = function(_, ...) return worker(...) end }) +return setmetatable(mboxc_all, { __call = function(_, ...) return worker(...) end })