aboutsummaryrefslogtreecommitdiffstats
path: root/slack/config.py
diff options
context:
space:
mode:
authorTrygve Aaberge <trygveaa@gmail.com>2022-11-21 00:10:50 +0100
committerTrygve Aaberge <trygveaa@gmail.com>2024-02-18 11:32:53 +0100
commit0a7aecb9e8398a32fc041411ae45b85bcf477cea (patch)
tree8b569713719d996f21eddf1cbee9072d58b8066c /slack/config.py
parentc28cc0bc54b1ec55c657d8c32c54a01d68e8fc52 (diff)
downloadwee-slack-0a7aecb9e8398a32fc041411ae45b85bcf477cea.tar.gz
Show a loading indicator in the input
Diffstat (limited to 'slack/config.py')
-rw-r--r--slack/config.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/slack/config.py b/slack/config.py
index e9be0ba..8ee1e1c 100644
--- a/slack/config.py
+++ b/slack/config.py
@@ -158,10 +158,17 @@ class SlackConfigSectionColor:
def __init__(self, weechat_config: WeeChatConfig):
self._section = WeeChatSection(weechat_config, "color")
+ self.loading = WeeChatOption(
+ self._section,
+ "loading",
+ "text color for the loading text",
+ WeeChatColor("yellow"),
+ )
+
self.reaction_suffix = WeeChatOption(
self._section,
"reaction_suffix",
- "Color to use for the [:wave:(@user)] suffix on messages that have "
+ "text color for the [:wave:(@user)] suffix on messages that have "
"reactions attached to them.",
WeeChatColor("darkgray"),
)