Added keyring_backend variable.

This commit is contained in:
facetoe 2015-02-01 09:31:13 +08:00
parent 1b8e3fe2e4
commit 9324f06a3c
6 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,7 @@ class Github(IntervalModule):
password = ''
format = '{unread}'
interval = 600
keyring_backend = None
on_leftclick = 'open_github'

View File

@ -20,6 +20,7 @@ class IMAP(Backend):
"mailbox",
)
required = ("host", "username", "password")
keyring_backend = None
port = 993
ssl = True

View File

@ -24,6 +24,7 @@ class ModsDeChecker(IntervalModule):
"color", "username", "password"
)
required = ("username", "password")
keyring_backend = None
color = "#7181fe"
offset = 0

View File

@ -32,6 +32,7 @@ class pyLoad(IntervalModule):
"username", "password"
)
required = ("username", "password")
keyring_backend = None
address = "http://127.0.0.1:8000"
format = "{captcha} {progress_all:.1f}% {speed:.1f} kb/s"

View File

@ -48,6 +48,7 @@ class Reddit(IntervalModule):
format = "[{submission_subreddit}] {submission_title} ({submission_domain})"
username = ""
password = ""
keyring_backend = None
subreddit = ""
sort_by = "hot"
color = "#FFFFFF"

View File

@ -71,6 +71,7 @@ class WOL(IntervalModule):
'email',
'password'
)
keyring_backend = None
color_on_site = '#00FF00'
color_off_site = '#ff0000'