Merge branch 'date-click'

This commit is contained in:
Alex 2018-11-02 00:56:44 +01:00
commit 8bb718fef8

View file

@ -30,6 +30,9 @@ class Module(bumblebee.engine.Module):
def __init__(self, engine, config): def __init__(self, engine, config):
super(Module, self).__init__(engine, config, super(Module, self).__init__(engine, config,
bumblebee.output.Widget(full_text=self.get_time)) bumblebee.output.Widget(full_text=self.get_time))
self._app = self.parameter("open", "calendar")
engine.input.register_callback(self, button=bumblebee.input.LEFT_MOUSE,
cmd=self._app)
self._fmt = self.parameter("format", default_format(self.name)) self._fmt = self.parameter("format", default_format(self.name))
l = locale.getdefaultlocale() l = locale.getdefaultlocale()
if not l or l == (None, None): if not l or l == (None, None):