diff options
Diffstat (limited to 'slack/config.py')
-rw-r--r-- | slack/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/slack/config.py b/slack/config.py index 8ee1e1c..6150ff7 100644 --- a/slack/config.py +++ b/slack/config.py @@ -158,6 +158,13 @@ class SlackConfigSectionColor: def __init__(self, weechat_config: WeeChatConfig): self._section = WeeChatSection(weechat_config, "color") + self.disconnected = WeeChatOption( + self._section, + "disconnected", + "text color for the disconnected text", + WeeChatColor("red"), + ) + self.loading = WeeChatOption( self._section, "loading", |