diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-01-26 22:21:58 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-01-26 22:21:58 +0000 |
commit | 9a7b7af41c4712e3b24c87278b90c5de100f8ab4 (patch) | |
tree | 318d598b10b1e36bad052004a955be86d5f1087a /src/common/weeconfig.c | |
parent | 7debba0eca70d31a6649022ec948acbac5f879f4 (diff) | |
download | weechat-9a7b7af41c4712e3b24c87278b90c5de100f8ab4.zip |
Away nicks are now displayed with another color
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 41ec615bb..995fc0f65 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -198,6 +198,7 @@ int cfg_col_input_channel; int cfg_col_input_nick; int cfg_col_input_bg; int cfg_col_nick; +int cfg_col_nick_away; int cfg_col_nick_op; int cfg_col_nick_halfop; int cfg_col_nick_voice; @@ -337,6 +338,10 @@ t_config_option weechat_options_colors[] = N_("color for nicknames"), OPTION_TYPE_COLOR, 0, 0, 0, "default", NULL, &cfg_col_nick, NULL, &config_change_color }, + { "col_nick_away", N_("color for away nicknames"), + N_("color for away nicknames"), + OPTION_TYPE_COLOR, 0, 0, 0, + "cyan", NULL, &cfg_col_nick_away, NULL, &config_change_color }, { "col_nick_op", N_("color for operator symbol"), N_("color for operator symbol"), OPTION_TYPE_COLOR, 0, 0, 0, |