X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/44864dba370a427a67a6f4bf20ec9097bf5bde91..bcd37ae4ae4f0e5d11ab6d8f6a9580e840447327:/widgets/imap.lua diff --git a/widgets/imap.lua b/widgets/imap.lua index de2f7b4..06b4245 100644 --- a/widgets/imap.lua +++ b/widgets/imap.lua @@ -12,7 +12,6 @@ local async = require("lain.asyncshell") local naughty = require("naughty") local wibox = require("wibox") -local mouse = mouse local string = { format = string.format, gsub = string.gsub } local tonumber = tonumber @@ -33,7 +32,7 @@ local function worker(args) local port = args.port or 993 local timeout = args.timeout or 60 local is_plain = args.is_plain or false - local followmouse = args.followmouse or false + local followtag = args.followtag or false local settings = args.settings or function() end local head_command = "curl --connect-timeout 3 -fsm 3" @@ -53,8 +52,8 @@ local function worker(args) position = "top_left" } - if followmouse then - mail_notification_preset.screen = mouse.screen + if followtag then + mail_notification_preset.screen = awful.screen.focused() end curl = string.format("%s --url imaps://%s:%s/INBOX -u %s:%q %s -k",