diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-11-24 21:18:47 +0000 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2006-11-24 21:18:47 +0000 |
commit | ccd5ecd04700586b66f68753c8a3bf2f1e19aa39 (patch) | |
tree | 78a5847c4764d113a1e4c049824c9808c474b0e9 /hardinfo2/report.c | |
parent | a20d38574df43287123bc1e685c0fe3f11f81cc7 (diff) |
Pretty colours :)
Diffstat (limited to 'hardinfo2/report.c')
-rw-r--r-- | hardinfo2/report.c | 4 |
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); |