From fa90e01bc5d71b478357b3bafca7865fccb521c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 20 Nov 2023 22:51:01 +0800 Subject: [PATCH] Helo: correctly display italic text --- src/fastfetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastfetch.c b/src/fastfetch.c index 7c6a7f283..a438620d7 100644 --- a/src/fastfetch.c +++ b/src/fastfetch.c @@ -95,7 +95,7 @@ static void printFullHelp() bool optional = optionalKey && yyjson_get_bool(optionalKey); putchar(' '); if (!instance.config.display.pipe) - fputs("\e[4m", stdout); + fputs("\e[3m", stdout); printf("<%s%s>", optional ? "?" : "", yyjson_get_str(typeKey)); if (!instance.config.display.pipe) fputs("\e[m", stdout);