[modules/error] Add simple module to show bumblebee errors
This commit is contained in:
parent
c0cc1ccd75
commit
2b8eda9d72
1 changed files with 30 additions and 0 deletions
30
modules/core/error.py
Normal file
30
modules/core/error.py
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# pylint: disable=C0111,R0903
|
||||||
|
|
||||||
|
"""Shows bumblebee-status errors"""
|
||||||
|
|
||||||
|
import platform
|
||||||
|
|
||||||
|
import core.module
|
||||||
|
import core.widget
|
||||||
|
import core.event
|
||||||
|
|
||||||
|
class Module(core.module.Module):
|
||||||
|
def __init__(self, config):
|
||||||
|
super().__init__(config, core.widget.Widget(self.full_text))
|
||||||
|
self.__error = ''
|
||||||
|
self.__state = 'critical'
|
||||||
|
|
||||||
|
core.event.register('error', self.__set_error)
|
||||||
|
|
||||||
|
def full_text(self, widgets):
|
||||||
|
return self.__error
|
||||||
|
|
||||||
|
def __set_error(self, error='n/a', state='critical'):
|
||||||
|
self.__error = error
|
||||||
|
self.__state = state
|
||||||
|
self.update()
|
||||||
|
|
||||||
|
def state(self, widget):
|
||||||
|
if self.__error: return [self.__state]
|
||||||
|
|
||||||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
Loading…
Reference in a new issue