From 7e7c64f513460cfb391e2fc558e6fdbc83faa54d Mon Sep 17 00:00:00 2001 From: Xavion Date: Mon, 28 Mar 2016 09:35:37 +1100 Subject: Add colour to group selection dialog Colour the group name in 'blue' and the repository names in 'magenta'. Signed-off-by: Xavion Signed-off-by: Allan McRae --- src/pacman/util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pacman/util.c') diff --git a/src/pacman/util.c b/src/pacman/util.c index d924bf36..0155493f 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -1256,8 +1256,9 @@ static void display_repo_list(const char *dbname, alpm_list_t *list, unsigned short cols) { const char *prefix = " "; + const colstr_t *colstr = &config->colstr; - colon_printf(_("Repository %s\n"), dbname); + colon_printf(_("Repository %s%s\n"), colstr->repo, dbname); list_display(prefix, list, cols); } -- cgit v1.2.3-24-g4f1b