mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 01:43:13 +00:00
28 lines
631 B
Markdown
28 lines
631 B
Markdown
|
# Script: inbox-imap-shellnetrc
|
||
|
|
||
|
A script that shows if there are unread mails in your IMAP inbox.
|
||
|
|
||
|
This script actually use IMAPs. `curl` can also handle unencrypted IMAP. You only need to change the protocol in the command.
|
||
|
|
||
|
The login data is stored in a `.netrc`. This is more secure because the password is not visible in the process list.
|
||
|
|
||
|
|
||
|
## Dependencies
|
||
|
|
||
|
* `curl`
|
||
|
|
||
|
|
||
|
## Configuration
|
||
|
|
||
|
For Gmail, you must allow [less secure apps](https://myaccount.google.com/security#connectedapps).
|
||
|
|
||
|
|
||
|
## Module
|
||
|
|
||
|
```ini
|
||
|
[module/inbox-imap-shellnetrc]
|
||
|
type = custom/script
|
||
|
exec = ~/polybar-scripts/inbox-imap-shellnetrc.sh
|
||
|
interval = 60
|
||
|
```
|