diff --git a/widgets/gmail.lua b/widgets/gmail.lua
index ba8e731..dbd7d19 100644
--- a/widgets/gmail.lua
+++ b/widgets/gmail.lua
@@ -10,7 +10,6 @@ local io = { popen = io.popen }
local setmetatable = setmetatable
local helpers = require("vicious.helpers")
local string = {
- find = string.find,
match = string.match
}
-- }}}
@@ -23,18 +22,9 @@ local gmail = {}
-- {{{ Variable definitions
local rss = {
- inbox = {
- "https://mail.google.com/mail/feed/atom",
- "Gmail %- Inbox"
- },
- unread = {
- "https://mail.google.com/mail/feed/atom/unread",
- "Gmail %- Label"
- },
- --labelname = {
- -- "https://mail.google.com/mail/feed/atom/labelname",
- -- "Gmail %- Label"
- --},
+ inbox = "https://mail.google.com/mail/feed/atom",
+ unread = "https://mail.google.com/mail/feed/atom/unread",
+ --labelname = "https://mail.google.com/mail/feed/atom/labelname",
}
-- Default is just Inbox
@@ -49,31 +39,31 @@ local mail = {
-- {{{ Gmail widget type
local function worker(format, warg)
-- Get info from the Gmail atom feed
- local f = io.popen("curl --connect-timeout 1 -m 3 -fsn " .. feed[1])
+ local f = io.popen("curl --connect-timeout 1 -m 3 -fsn " .. feed)
-- Could be huge don't read it all at once, info we are after is at the top
- for line in f:lines() do
- mail["{count}"] = -- Count comes before messages and matches at least 0
- tonumber(string.match(line, "