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/flashlight.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/flashlight.py')
| -rw-r--r-- | wasp/apps/flashlight.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wasp/apps/flashlight.py b/wasp/apps/flashlight.py index 13e3443..c4702a0 100644 --- a/wasp/apps/flashlight.py +++ b/wasp/apps/flashlight.py @@ -3,11 +3,15 @@ import wasp +import icons + class FlashlightApp(object): """Trivial flashlight application. Shows a pure white screen with the backlight set to maximum. """ + NAME = 'Torch' + ICON = icons.torch def foreground(self): """Activate the application.""" |
