From 6d7934f0fe903edcacf651c364dc8b1e6d25241a Mon Sep 17 00:00:00 2001 From: Michal Cieslicki Date: Fri, 26 Feb 2021 18:02:47 +0100 Subject: [PATCH] Add code to enable scrolling of shell module output --- bumblebee_status/modules/contrib/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bumblebee_status/modules/contrib/shell.py b/bumblebee_status/modules/contrib/shell.py index 6fd9aa2..cb7bc38 100644 --- a/bumblebee_status/modules/contrib/shell.py +++ b/bumblebee_status/modules/contrib/shell.py @@ -54,6 +54,7 @@ class Module(core.module.Module): def set_output(self, value): self.__output = value + @core.decorators.scrollable def get_output(self, _): return self.__output