From 2bd3fe5f9272e5b5ca7435ac4e9b5770190e832d Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 13 Aug 2021 14:16:16 -0400 Subject: [PATCH] bold up ncneofetch infoplane --- src/fetch/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fetch/main.c b/src/fetch/main.c index 114b838c4..ed173693a 100644 --- a/src/fetch/main.c +++ b/src/fetch/main.c @@ -413,7 +413,7 @@ infoplane_notcurses(struct notcurses* nc, const fetched_info* fi, int planeheigh if(fi->distro_pretty){ ncplane_printf_aligned(infop, 1, NCALIGN_RIGHT, "%s ", fi->distro_pretty); } - ncplane_set_styles(infop, NCSTYLE_NONE); + ncplane_set_styles(infop, NCSTYLE_BOLD); #ifdef __linux__ struct sysinfo sinfo; sysinfo(&sinfo); @@ -448,7 +448,7 @@ infoplane_notcurses(struct notcurses* nc, const fetched_info* fi, int planeheigh #else ncplane_printf_aligned(infop, 5, NCALIGN_RIGHT, "UID: %s ", "FIXME"); // FIXME #endif - ncplane_set_styles(infop, NCSTYLE_ITALIC); + ncplane_set_styles(infop, NCSTYLE_ITALIC | NCSTYLE_BOLD); ncplane_printf_aligned(infop, 6, NCALIGN_CENTER, "%s (%d cores)", fi->cpu_model, fi->core_count); nccell ul = CELL_TRIVIAL_INITIALIZER, ur = CELL_TRIVIAL_INITIALIZER; nccell ll = CELL_TRIVIAL_INITIALIZER, lr = CELL_TRIVIAL_INITIALIZER;