diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2020-02-01 16:55:58 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2020-02-01 17:01:39 +0100 |
commit | 958296fb6c3a17db85cbdcf44bf35647c51aaccd (patch) | |
tree | a68552c61465e0ee6c35578ad3038dbf6c38b6bb /wee_slack.py | |
parent | 85426cbcb110f155ff60688a6ce72e49d559dc5d (diff) | |
download | wee-slack-958296fb6c3a17db85cbdcf44bf35647c51aaccd.tar.gz |
Add options for hard coded colors
Fixes #681
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/wee_slack.py b/wee_slack.py index fe94cd5..6eb725e 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -986,7 +986,7 @@ def typing_bar_item_cb(data, item, current_window, current_buffer, extra_info): typing = ", ".join(typers) if typing != "": - typing = w.color('yellow') + "typing: " + typing + typing = w.color(config.color_typing_notice) + "typing: " + typing return typing @@ -3168,7 +3168,7 @@ def subprocess_message_changed(message_json, eventrouter, channel, team, history def subprocess_message_deleted(message_json, eventrouter, channel, team, history_message): message = "{}{}{}".format( - w.color("red"), '(deleted)', w.color("reset")) + w.color(config.color_deleted), '(deleted)', w.color("reset")) channel.change_message(message_json["deleted_ts"], text=message) @@ -3494,7 +3494,7 @@ def unwrap_files(message_json, text_before): text = '{} ({})'.format(f['url_private'], f['title']) else: text = '{}(This file was deleted.){}'.format( - w.color("red"), + w.color(config.color_deleted), w.color("reset")) files_texts.append(text) @@ -4705,6 +4705,9 @@ class PluginConfig(object): 'color_buflist_muted_channels': Setting( default='darkgray', desc='Color to use for muted channels in the buflist'), + 'color_deleted': Setting( + default='red', + desc='Color to use for deleted messages and files.'), 'color_edited_suffix': Setting( default='095', desc='Color to use for (edited) suffix on messages that have been edited.'), @@ -4717,6 +4720,9 @@ class PluginConfig(object): desc='Color to use for the [thread: XXX] suffix on messages that' ' have threads attached to them. The special value "multiple" can' ' be used to use a different color for each thread.'), + 'color_typing_notice': Setting( + default='yellow', + desc='Color to use for the typing notice.'), 'colorize_private_chats': Setting( default='false', desc='Whether to use nick-colors in DM windows.'), @@ -4899,9 +4905,11 @@ class PluginConfig(object): return w.config_get_plugin(key) == default get_color_buflist_muted_channels = get_string + get_color_deleted = get_string get_color_edited_suffix = get_string get_color_reaction_suffix = get_string get_color_thread_suffix = get_string + get_color_typing_notice = get_string get_debug_level = get_int get_external_user_suffix = get_string get_files_download_location = get_string |