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.
This commit is contained in:
Jean Gregory 2017-12-09 09:28:25 -05:00 committed by GitHub
parent 055e663772
commit 7d0611cc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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