4e0e3ef427
* Change some formatting to please python3 * remote pyroute2 dependency, for which I didn't find a python3 module in Fedora24 this solves #1
34 lines
980 B
Python
34 lines
980 B
Python
from __future__ import absolute_import
|
|
|
|
import datetime
|
|
import bumblebee.module
|
|
|
|
def description():
|
|
return "Displays the current time, using the optional format string as input for strftime."
|
|
|
|
def parameters():
|
|
module = __name__.split(".")[-1]
|
|
return [
|
|
"{}.format: strftime specification (defaults to {})".format(module, default_format(module))
|
|
]
|
|
|
|
def default_format(module):
|
|
default = "%x %X"
|
|
if module == "date":
|
|
default = "%x"
|
|
if module == "time":
|
|
default = "%X"
|
|
return default
|
|
|
|
class Module(bumblebee.module.Module):
|
|
def __init__(self, output, config, alias):
|
|
super(Module, self).__init__(output, config, alias)
|
|
|
|
module = self.__module__.split(".")[-1]
|
|
|
|
self._fmt = self._config.parameter("format", default_format(module))
|
|
|
|
def widgets(self):
|
|
return bumblebee.output.Widget(self, datetime.datetime.now().strftime(self._fmt))
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|