bumblebee-status/bumblebee/modules/time.py
Tobias Witek 73d62d7ded [widgets] Pass through some information to the underlying module object
For determining status, critical/warning state, etc. simply let the
widget pass through a call to the underlying object.
2016-11-05 12:14:33 +01:00

41 lines
1.1 KiB
Python

from __future__ import absolute_import
import datetime
import bumblebee.module
def usage():
module = __name__.split(".")[-1]
if module == "date":
return "date::<strftime format string, defaults to %x>"
if module == "time":
return "time::<strftime format string, defaults to %X>"
return "datetime::<strftime format string, defaults to '%x %X'>"
def notes():
return "none"
def description():
return "Displays the current time, using the optional format string as input for strftime."
class Module(bumblebee.module.Module):
def __init__(self, output, config):
super(Module, self).__init__(output, config)
module = self.__module__.split(".")[-1]
default = "%x %X"
if module == "date":
default = "%x"
if module == "time":
default = "%X"
param_name = "{}.format".format(module)
self._fmt = config.parameter(param_name, default)
def widgets(self):
return [
bumblebee.output.Widget(self,
datetime.datetime.now().strftime(self._fmt)
)
]
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4