diff options
-rw-r--r-- | Tools/pynche/Switchboard.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools/pynche/Switchboard.py b/Tools/pynche/Switchboard.py index 503752e..4286b48 100644 --- a/Tools/pynche/Switchboard.py +++ b/Tools/pynche/Switchboard.py @@ -33,5 +33,8 @@ class Switchboard: def update_views_current(self): self.update_views(self.__red, self.__green, self.__blue) + def current_rgb(self): + return self.__red, self.__green, self.__blue + def colordb(self): return self.__colordb |