Merge pull request #260 from sclu1034/issue/email-widgets

Fix email widgets being inaccessible
This commit is contained in:
streetturtle 2021-05-10 14:40:50 -04:00 committed by GitHub
commit 11acce4506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -14,7 +14,8 @@ To install it put **email.lua** and **email-widget** folder under **~/.config/aw
- add widget to awesome:
```lua
require("email")
local email_widget, email_icon = require("email")
...
s.mytasklist, -- Middle widget
{ -- Right widgets

View File

@ -40,3 +40,5 @@ local function show_emails()
end
email_icon:connect_signal("mouse::enter", function() show_emails() end)
return email_widget, email_icon