From 170aebeb6858e12c797aacb81eaa882c059548a9 Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Tue, 21 Nov 2017 16:53:34 -0600 Subject: [PATCH] minor change v2 --- ShiftOS.Main/ShiftOS/Apps/Terminal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShiftOS.Main/ShiftOS/Apps/Terminal.cs b/ShiftOS.Main/ShiftOS/Apps/Terminal.cs index c65f705..28e301c 100644 --- a/ShiftOS.Main/ShiftOS/Apps/Terminal.cs +++ b/ShiftOS.Main/ShiftOS/Apps/Terminal.cs @@ -9,7 +9,7 @@ namespace ShiftOS.Main.ShiftOS.Apps { public int TerminalID = TerminalBackend.trmTopID++; // Used so that we can have multiple instances of the terminal whilst the command begin run knowing what terminal to send the text to - very complicated ;) public string defaulttextBefore = "user> "; - public string defaulttextResult = "user@shiftos> "; // NOT YET IMPLEMENTED!!! + public string defaulttextResult = "[user@shiftos~]$> "; // NOT YET IMPLEMENTED!!! public bool DoClear = false; public bool RunningCommand = false; public bool WaitingResponse = false;