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 = '' password = ''
format = '{unread}' format = '{unread}'
interval = 600 interval = 600
keyring_backend = None
on_leftclick = 'open_github' on_leftclick = 'open_github'

View File

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

View File

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

View File

@ -32,6 +32,7 @@ class pyLoad(IntervalModule):
"username", "password" "username", "password"
) )
required = ("username", "password") required = ("username", "password")
keyring_backend = None
address = "http://127.0.0.1:8000" address = "http://127.0.0.1:8000"
format = "{captcha} {progress_all:.1f}% {speed:.1f} kb/s" 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})" format = "[{submission_subreddit}] {submission_title} ({submission_domain})"
username = "" username = ""
password = "" password = ""
keyring_backend = None
subreddit = "" subreddit = ""
sort_by = "hot" sort_by = "hot"
color = "#FFFFFF" color = "#FFFFFF"

View File

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