This commit is contained in:
enkore 2014-01-16 23:10:06 +01:00
parent 4301ddd2d7
commit 774715a8c8

View File

@ -332,7 +332,7 @@ Settings:
:alert_format_title: The title of the notification, all formatters can be used (default: ``Low battery``) :alert_format_title: The title of the notification, all formatters can be used (default: ``Low battery``)
:alert_format_body: The body text of the notification, all formatters can be used (default: ``Battery {battery_ident} has only {percentage:.2f}% ({remaining:%E%hh:%Mm}) remaining!``) :alert_format_body: The body text of the notification, all formatters can be used (default: ``Battery {battery_ident} has only {percentage:.2f}% ({remaining:%E%hh:%Mm}) remaining!``)
:path: Override the default-generated path (default: ``None``) :path: Override the default-generated path (default: ``None``)
:status: A dictionary mapping ('DIS', 'CHR', 'FULL') to alternative names (default: ``{'DIS': 'DIS', 'CHR': 'CHR', 'FULL': 'FULL'}``) :status: A dictionary mapping ('DIS', 'CHR', 'FULL') to alternative names (default: ``{'DIS': 'DIS', 'FULL': 'FULL', 'CHR': 'CHR'}``)
@ -435,63 +435,63 @@ Settings:
Currently available backends are: Currently available backends are:
imap.IMAP imap.IMAP
~~~~~~~~~ ~~~~~~~~~
Checks for mail on a IMAP server Checks for mail on a IMAP server
Settings: Settings:
:host: (required) :host: (required)
:port: (default: ``993``) :port: (default: ``993``)
:username: (required) :username: (required)
:password: (required) :password: (required)
:ssl: (default: ``True``) :ssl: (default: ``True``)
:mailbox: (default: ``INBOX``) :mailbox: (default: ``INBOX``)
mbox.MboxMail mbox.MboxMail
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
Checks for local mail in mbox Checks for local mail in mbox
Settings: Settings:
notmuchmail.Notmuch notmuchmail.Notmuch
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
This class uses the notmuch python bindings to check for the This class uses the notmuch python bindings to check for the
number of messages in the notmuch database with the tags "inbox" number of messages in the notmuch database with the tags "inbox"
and "unread" and "unread"
Settings: Settings:
:db_path: (required) :db_path: (required)
thunderbird.Thunderbird thunderbird.Thunderbird
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
This class listens for dbus signals emitted by This class listens for dbus signals emitted by
the dbus-sender extension for thunderbird. the dbus-sender extension for thunderbird.
Requires python-dbus Requires python-dbus
Settings: Settings:
@ -565,7 +565,7 @@ Settings:
:host: (default: ``localhost``) :host: (default: ``localhost``)
:port: MPD port (default: ``6600``) :port: MPD port (default: ``6600``)
:format: formatp string (default: ``{title} {status}``) :format: formatp string (default: ``{title} {status}``)
:status: Dictionary mapping pause, play and stop to output (default: ``{'stop': '◾', 'play': '▶', 'pause': '▷'}``) :status: Dictionary mapping pause, play and stop to output (default: ``{'stop': '◾', 'pause': '▷', 'play': '▶'}``)