From e3cdf9d9fd33f5e2e565a45ba8c889cebb8719cb Mon Sep 17 00:00:00 2001 From: Linus Dierheimer Date: Thu, 18 Aug 2022 11:45:44 +0200 Subject: [PATCH] Reset color after custom module --- src/modules/custom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/custom.c b/src/modules/custom.c index 31eb597a8..723f7059c 100644 --- a/src/modules/custom.c +++ b/src/modules/custom.c @@ -5,5 +5,5 @@ void ffPrintCustom(FFinstance* instance, const char* key, const char* value) { ffPrintLogoAndKey(instance, key, 0, NULL); ffPrintUserString(value); - putchar('\n'); + puts(FASTFETCH_TEXT_MODIFIER_RESET); }