diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/weeconfig.c | 10 | ||||
-rw-r--r-- | src/common/weeconfig.h | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 04e678f40..a9d14c674 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -204,6 +204,8 @@ int cfg_col_input_nick; int cfg_col_input_bg; int cfg_col_nick; int cfg_col_nick_away; +int cfg_col_nick_chanowner; +int cfg_col_nick_chanadmin; int cfg_col_nick_op; int cfg_col_nick_halfop; int cfg_col_nick_voice; @@ -347,6 +349,14 @@ t_config_option weechat_options_colors[] = N_("color for away nicknames"), OPTION_TYPE_COLOR, 0, 0, 0, "cyan", NULL, &cfg_col_nick_away, NULL, &config_change_color }, + { "col_nick_chanowner", N_("color for chan owner symbol"), + N_("color for chan owner symbol (specific to unrealircd)"), + OPTION_TYPE_COLOR, 0, 0, 0, + "lightgreen", NULL, &cfg_col_nick_chanowner, NULL, &config_change_color }, + { "col_nick_chanadmin", N_("color for chan admin symbol"), + N_("color for chan admin symbol (specific to unrealircd)"), + OPTION_TYPE_COLOR, 0, 0, 0, + "lightgreen", NULL, &cfg_col_nick_chanadmin, NULL, &config_change_color }, { "col_nick_op", N_("color for operator symbol"), N_("color for operator symbol"), OPTION_TYPE_COLOR, 0, 0, 0, diff --git a/src/common/weeconfig.h b/src/common/weeconfig.h index 920228a48..f69d010af 100644 --- a/src/common/weeconfig.h +++ b/src/common/weeconfig.h @@ -127,6 +127,8 @@ extern int cfg_col_input_nick; extern int cfg_col_input_bg; extern int cfg_col_nick; extern int cfg_col_nick_away; +extern int cfg_col_nick_chanowner; +extern int cfg_col_nick_chanadmin; extern int cfg_col_nick_op; extern int cfg_col_nick_halfop; extern int cfg_col_nick_voice; |