aboutsummaryrefslogtreecommitdiff
path: root/widgets/gmail.lua
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/gmail.lua')
-rw-r--r--widgets/gmail.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/widgets/gmail.lua b/widgets/gmail.lua
index b2f0d8c..c772be8 100644
--- a/widgets/gmail.lua
+++ b/widgets/gmail.lua
@@ -38,16 +38,15 @@ local rss = {
-- Default is all unread
local feed = rss.unread
+local mail = {
+ ["{count}"] = 0,
+ ["{subject}"] = "N/A"
+}
-- }}}
-- {{{ Gmail widget type
local function worker(format, warg)
- local mail = {
- ["{count}"] = 0,
- ["{subject}"] = "N/A"
- }
-
-- Get info from the Gmail atom feed
local f = io.popen("curl --connect-timeout 1 -m 3 -fsn " .. feed[1])