diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-06 21:03:05 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-04-06 21:04:21 (GMT) |
| commit | 8ed80eeebab06dba5839a7f08703494a9917348a (patch) | |
| tree | 42ae928cd966ca56ca23345cad6653fbca5dc727 /wasp/apps/clock.py | |
| parent | 59bb70fa649d1994d367e69fb6272f36a6176825 (diff) | |
wasp: launcher: Experimental launcher implementation
It is not really the launcher itself that is immature. Rather that the
framework and UI concepts to move between applications isn't complete
yet.
Diffstat (limited to 'wasp/apps/clock.py')
| -rw-r--r-- | wasp/apps/clock.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wasp/apps/clock.py b/wasp/apps/clock.py index 4feba63..4236d9a 100644 --- a/wasp/apps/clock.py +++ b/wasp/apps/clock.py @@ -3,6 +3,7 @@ import wasp +import icons import fonts.clock as digits DIGITS = ( @@ -25,6 +26,8 @@ class ClockApp(): Shows a time (as HH:MM) together with a battery meter and the date. """ + NAME = 'Clock' + ICON = icons.clock def __init__(self): self.meter = wasp.widgets.BatteryMeter() |
