From: Jean Gregory Date: Sat, 9 Dec 2017 14:28:25 +0000 (-0500) Subject: added awful library require X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/7d0611cc405616fa42480f84ce431071708acb13?ds=inline;hp=-c 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. --- 7d0611cc405616fa42480f84ce431071708acb13 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