diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-04 19:00:37 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-11-04 19:00:37 (GMT) |
| commit | 8e89e381751e79b1bc768886263d02f1b72dfbac (patch) | |
| tree | 53ad3e1231a123cb83b72cea2d18c4b52a3d2c7c /wasp/wasp.py | |
| parent | f95f45cda3b4ef2baae1c952521d729fbad00577 (diff) | |
manager: Introduce shared "system bar"
Providing a status bar for all apps to use allows us to reduce allocations
within the applications.
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/wasp.py')
| -rw-r--r-- | wasp/wasp.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py index 8f7e8a8..e2e728a 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -100,6 +100,8 @@ class Manager(): def __init__(self): self.app = None + self.bar = widgets.StatusBar() + self.quick_ring = [] self.launcher = LauncherApp() self.launcher_ring = [] |
