awesome/awesome-wm-widgets/email-widget
Thomas Forgione 26793c6bdd Escape passwords 2022-01-06 10:40:34 +01:00
..
.gitignore Added more widgets 2018-11-29 11:39:53 +01:00
README.md Better widgets 2018-11-28 15:31:35 +01:00
count_unread_emails.py Update with pass 2021-11-16 18:06:38 +01:00
em-wid-1.png Better widgets 2018-11-28 15:31:35 +01:00
em-wid-2.png Better widgets 2018-11-28 15:31:35 +01:00
email.lua Escape passwords 2022-01-06 10:40:34 +01:00
read_unread_emails.py Fix bug 2019-02-22 10:54:30 +01:00

README.md

Email widget

This widget consists of an icon with counter which shows number of unread emails: email icon and a popup message which appears when mouse hovers over an icon: email popup

Note that widget uses the Arc icon theme, so it should be installed first under /usr/share/icons/Arc/ folder.

Installation

To install it put email.lua and email-widget folder under ~/.config/awesome. Then

  • in email.lua cahnge path to python scripts;
  • in python scripts add your credentials (note that password should be encrypted using pgp for example);
  • add widget to awesome:
require("email")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
		email_icon,
        email_widget,
		...      

How it works

This widget uses the output of two python scripts, first is called every 20 seconds - it returns number of unread emails and second is called when mouse hovers over an icon and displays content of those emails. For both of them you'll need to provide your credentials and imap server. For testing they can simply be called from console:

python ~/.config/awesome/email/count_unread_emails.py 
python ~/.config/awesome/email/read_emails.py