From f35aff6170ac35edd7ac2c7587a16fac6bd577d1 Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Fri, 19 Sep 2025 13:29:29 -0400 Subject: [PATCH] System/Core/Shell: Update default PS1 --- System/Core/Shell.HC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/Core/Shell.HC b/System/Core/Shell.HC index 613c4a5..af37df9 100644 --- a/System/Core/Shell.HC +++ b/System/Core/Shell.HC @@ -221,7 +221,7 @@ U0 @shell_update_prompts(@shell* sh) StrCpy(&buf, "~"); else StrCpy(&buf, StrLastOcc(&buf, "/") + 1); - StrPrint(&sh->PS1, "[%s@%s %s]\d ", &sh->session->user.name, + StrPrint(&sh->PS1, "\x1b[0;32m[%s@%s %s]\x1b[1;37m\d ", &sh->session->user.name, &sh->session->hostname, &buf); }