Add Module.test
This commit is contained in:
parent
6ad0004d37
commit
b662d8797e
@ -52,10 +52,15 @@ class Config:
|
|||||||
import i3pystatus
|
import i3pystatus
|
||||||
class TestStatus(i3pystatus.Status):
|
class TestStatus(i3pystatus.Status):
|
||||||
def run(self):
|
def run(self):
|
||||||
|
self.modules.reverse()
|
||||||
self.call_start_hooks()
|
self.call_start_hooks()
|
||||||
for module in self.modules:
|
for module in self.modules:
|
||||||
sys.stdout.write("{module}: ".format(module=module.__name__))
|
sys.stdout.write("{module}: ".format(module=module.__name__))
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
|
test = module.test()
|
||||||
|
if test:
|
||||||
|
print("\n\t", test)
|
||||||
|
continue
|
||||||
module.run()
|
module.run()
|
||||||
output = module.output or {"full_text": "(no output)"}
|
output = module.output or {"full_text": "(no output)"}
|
||||||
print(render_json(output))
|
print(render_json(output))
|
||||||
@ -65,6 +70,5 @@ class Config:
|
|||||||
i3pystatus.Status = i3pystatus.Status.__bases__[0]
|
i3pystatus.Status = i3pystatus.Status.__bases__[0]
|
||||||
|
|
||||||
with setup():
|
with setup():
|
||||||
print("Using configuration file {file}".format(file=self.config_file))
|
print("Using configuration file {file}\n".format(file=self.config_file))
|
||||||
print("Output, would be displayed right to left in i3bar")
|
|
||||||
self.run()
|
self.run()
|
||||||
|
@ -21,6 +21,15 @@ class Module(SettingsBase):
|
|||||||
self.output["instance"] = str(id(self))
|
self.output["instance"] = str(id(self))
|
||||||
json.insert(0, self.output)
|
json.insert(0, self.output)
|
||||||
|
|
||||||
|
def test(self):
|
||||||
|
"""
|
||||||
|
Return None* if settings seem ok (i.e. login credentials and such are valid)
|
||||||
|
or a string describing the problem
|
||||||
|
|
||||||
|
* or some other value evaluating to false in a boolean context
|
||||||
|
"""
|
||||||
|
return
|
||||||
|
|
||||||
def on_click(self, button):
|
def on_click(self, button):
|
||||||
if button == 1: # Left mouse button
|
if button == 1: # Left mouse button
|
||||||
self.on_leftclick()
|
self.on_leftclick()
|
||||||
|
Loading…
Reference in New Issue
Block a user