From 7d0611cc405616fa42480f84ce431071708acb13 Mon Sep 17 00:00:00 2001 From: Jean Gregory Date: Sat, 9 Dec 2017 09:28:25 -0500 Subject: [PATCH] added awful library require setting the 'followtag' option of the imap widget to true was causing the update function to fail. The function was calling awful.screen.focused(), which failed because the awful library wasn't included. --- widget/imap.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/widget/imap.lua b/widget/imap.lua index 02561e6..17f37cf 100644 --- a/widget/imap.lua +++ b/widget/imap.lua @@ -8,6 +8,7 @@ local helpers = require("lain.helpers") local naughty = require("naughty") local wibox = require("wibox") +local awful = require("awful") local string = { format = string.format, gsub = string.gsub } local type = type -- 2.39.2