X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c62a259bfa8d576c05e7ac6bd1b978340f30135b..a12f0f98d99109a64942abf1bb1f6e429c2fc7f5:/lib/python/Screens/Globals.py diff --git a/lib/python/Screens/Globals.py b/lib/python/Screens/Globals.py new file mode 100644 index 00000000..9ae10026 --- /dev/null +++ b/lib/python/Screens/Globals.py @@ -0,0 +1,7 @@ +from Screens.Screen import Screen +from Components.Sources.Clock import Clock + +class Globals(Screen): + def __init__(self): + Screen.__init__(self, None) + self["CurrentTime"] = Clock()