From 6db55c8bd00bdb326069f9858d97d2caae743ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 25 Jan 2017 20:12:10 +0100 Subject: [PATCH] move pop widget to match new layout --- contrib/README.md | 3 +-- contrib/{pop.lua => pop_all.lua} | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) rename contrib/{pop.lua => pop_all.lua} (92%) diff --git a/contrib/README.md b/contrib/README.md index 41de938..0fff7bf 100644 --- a/contrib/README.md +++ b/contrib/README.md @@ -113,8 +113,7 @@ Supported Platforms: platform independent **vicious.contrib.ossvol** -vicious.contrib.pop - - +**vicious.contrib.pop** **vicious.contrib.pulse** diff --git a/contrib/pop.lua b/contrib/pop_all.lua similarity index 92% rename from contrib/pop.lua rename to contrib/pop_all.lua index 0ea041b..5b6b2a6 100644 --- a/contrib/pop.lua +++ b/contrib/pop_all.lua @@ -20,7 +20,7 @@ end) -- POP: provides the count of new messages in a POP3 mailbox -- vicious.contrib.pop -local pop = {} +local pop_all = {} -- {{{ POP3 count widget type @@ -52,4 +52,4 @@ local function worker(format, warg) end -- }}} -return setmetatable(pop, { __call = function(_, ...) return worker(...) end }) +return setmetatable(pop_all, { __call = function(_, ...) return worker(...) end })