summaryrefslogtreecommitdiffstats
path: root/src/pacman/util.c
diff options
context:
space:
mode:
authorXavion <Xavion (dot) 0 (at) Gmail (dot) com>2016-03-28 00:35:37 +0200
committerAllan McRae <allan@archlinux.org>2016-05-05 05:52:23 +0200
commit7e7c64f513460cfb391e2fc558e6fdbc83faa54d (patch)
tree6a9a321a251174abdcaa4f20f53bb5e0cfe26761 /src/pacman/util.c
parent7d1ea0b814723d6a422c5569df19513c40bf99fe (diff)
downloadpacman-7e7c64f513460cfb391e2fc558e6fdbc83faa54d.tar.gz
pacman-7e7c64f513460cfb391e2fc558e6fdbc83faa54d.tar.xz
Add colour to group selection dialog
Colour the group name in 'blue' and the repository names in 'magenta'. Signed-off-by: Xavion <Xavion (dot) 0 (at) Gmail (dot) com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman/util.c')
-rw-r--r--src/pacman/util.c3
1 files changed, 2 insertions, 1 deletions
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);
}