aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/report.c
diff options
context:
space:
mode:
Diffstat (limited to 'hardinfo2/report.c')
-rw-r--r--hardinfo2/report.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hardinfo2/report.c b/hardinfo2/report.c
index a5885b26..3752df46 100644
--- a/hardinfo2/report.c
+++ b/hardinfo2/report.c
@@ -307,7 +307,7 @@ report_create_inner_from_module_list(ReportContext *ctx, GSList *modules)
GSList *entries;
if (!params.gui_running)
- fprintf(stderr, "%s\n", module->name);
+ fprintf(stderr, "\033[40;32m%s\033[0m\n", module->name);
report_title(ctx, module->name);
@@ -315,7 +315,7 @@ report_create_inner_from_module_list(ReportContext *ctx, GSList *modules)
ShellModuleEntry *entry = (ShellModuleEntry *) entries->data;
if (!params.gui_running)
- fprintf(stderr, " * %s\n", entry->name);
+ fprintf(stderr, "\033[2K\033[40;32;1m %s\033[0m\n", entry->name);
ctx->entry = entry;
report_subtitle(ctx, entry->name);