X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/1b12fd2319e1cd02706fd3a7ec0f0203ca2782d2..4cc47f8d61c14feccba095c09d903c0c666e9055:/widget/imap.lua diff --git a/widget/imap.lua b/widget/imap.lua index 02561e6..7e83d36 100644 --- a/widget/imap.lua +++ b/widget/imap.lua @@ -1,15 +1,15 @@ --[[ Licensed under GNU General Public License v2 - * (c) 2013, Luke Bonham + * (c) 2013, Luca CPZ --]] local helpers = require("lain.helpers") local naughty = require("naughty") local wibox = require("wibox") -local string = { format = string.format, - gsub = string.gsub } +local awful = require("awful") +local string = string local type = type local tonumber = tonumber @@ -54,20 +54,17 @@ local function factory(args) mail_notification_preset.screen = awful.screen.focused() end - curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%q %s -k", - head_command, server, port, mail, password, request) + local curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%q %s -k", + head_command, server, port, mail, password, request) helpers.async(curl, function(f) - _, mailcount = string.gsub(f, "%d+", "") + mailcount = tonumber(f:match("UNSEEN (%d+)")) widget = imap.widget settings() - if notify == "on" and mailcount >= 1 and mailcount > helpers.get_map(mail) then - if mailcount == 1 then - nt = mail .. " has one new message" - else - nt = mail .. " has " .. mailcount .. " new messages" - end + if notify == "on" and mailcount and mailcount >= 1 and mailcount > helpers.get_map(mail) then + local nt = mail .. " has " .. mailcount .. " new message" + if mailcount >= 1 then nt = nt .. "s" end naughty.notify { preset = mail_notification_preset, text = nt } end