Added keyring_backend variable.
This commit is contained in:
parent
1b8e3fe2e4
commit
9324f06a3c
@ -23,6 +23,7 @@ class Github(IntervalModule):
|
||||
password = ''
|
||||
format = '{unread}'
|
||||
interval = 600
|
||||
keyring_backend = None
|
||||
|
||||
on_leftclick = 'open_github'
|
||||
|
||||
|
@ -20,6 +20,7 @@ class IMAP(Backend):
|
||||
"mailbox",
|
||||
)
|
||||
required = ("host", "username", "password")
|
||||
keyring_backend = None
|
||||
|
||||
port = 993
|
||||
ssl = True
|
||||
|
@ -24,6 +24,7 @@ class ModsDeChecker(IntervalModule):
|
||||
"color", "username", "password"
|
||||
)
|
||||
required = ("username", "password")
|
||||
keyring_backend = None
|
||||
|
||||
color = "#7181fe"
|
||||
offset = 0
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -71,6 +71,7 @@ class WOL(IntervalModule):
|
||||
'email',
|
||||
'password'
|
||||
)
|
||||
keyring_backend = None
|
||||
|
||||
color_on_site = '#00FF00'
|
||||
color_off_site = '#ff0000'
|
||||
|
Loading…
Reference in New Issue
Block a user