2016-12-09 07:11:23 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Displays the current time, using the optional format string as input for strftime."""
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import datetime
|
|
|
|
import bumblebee.engine
|
|
|
|
|
|
|
|
def default_format(module):
|
|
|
|
default = "%x %X"
|
|
|
|
if module == "date":
|
|
|
|
default = "%x"
|
|
|
|
if module == "time":
|
|
|
|
default = "%X"
|
|
|
|
return default
|
|
|
|
|
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 08:23:53 +01:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2016-12-09 07:11:23 +01:00
|
|
|
bumblebee.output.Widget(full_text=self.get_time)
|
|
|
|
)
|
|
|
|
module = self.__module__.split(".")[-1]
|
2016-12-09 08:23:53 +01:00
|
|
|
self._fmt = self.parameter("format", default_format(module))
|
2016-12-09 07:11:23 +01:00
|
|
|
|
|
|
|
def get_time(self):
|
|
|
|
return datetime.datetime.now().strftime(self._fmt)
|
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|