From ef325277334acdf842533c6ecf421dfebb8fa9dc Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Mon, 20 Apr 2026 13:03:11 +0200 Subject: [PATCH] fix: Fallback color for terminal color if disable in bshrc --- src/userland/gui/terminal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/userland/gui/terminal.c b/src/userland/gui/terminal.c index 343dbbe..a77ba04 100644 --- a/src/userland/gui/terminal.c +++ b/src/userland/gui/terminal.c @@ -974,6 +974,7 @@ static bool command_starts_with(const char *prefix) { static void update_input_color(TerminalSession *s) { if (!s->colors_enabled) { + s->input_color = s->fg_color; return; }