Merge pull request #260 from sclu1034/issue/email-widgets
Fix email widgets being inaccessible
This commit is contained in:
commit
11acce4506
|
@ -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
|
||||
|
|
|
@ -40,3 +40,5 @@ local function show_emails()
|
|||
end
|
||||
|
||||
email_icon:connect_signal("mouse::enter", function() show_emails() end)
|
||||
|
||||
return email_widget, email_icon
|
||||
|
|
Loading…
Reference in New Issue