aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Terminal.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-09 16:46:34 -0500
committerMichael <[email protected]>2017-03-09 16:46:34 -0500
commit251521835b60024dec292a759d738e2b81bf1417 (patch)
treeeb9a943b9a365e51bc25843168c6a301e2316783 /ShiftOS.WinForms/Applications/Terminal.cs
parent3f08cb807c1490af423450e3eb03a46aa11caf2f (diff)
downloadshiftos_thereturn-251521835b60024dec292a759d738e2b81bf1417.tar.gz
shiftos_thereturn-251521835b60024dec292a759d738e2b81bf1417.tar.bz2
shiftos_thereturn-251521835b60024dec292a759d738e2b81bf1417.zip
Console colors!
Diffstat (limited to 'ShiftOS.WinForms/Applications/Terminal.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Terminal.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Applications/Terminal.cs b/ShiftOS.WinForms/Applications/Terminal.cs
index 7bab213..65a8f0f 100644
--- a/ShiftOS.WinForms/Applications/Terminal.cs
+++ b/ShiftOS.WinForms/Applications/Terminal.cs
@@ -134,7 +134,7 @@ namespace ShiftOS.WinForms.Applications
rtbterm.Text = "";
TerminalBackend.PrefixEnabled = true;
TerminalBackend.InStory = false;
- Console.Write($"{SaveSystem.CurrentSave.Username}@{SaveSystem.CurrentSave.SystemName}:~$ ");
+ TerminalBackend.PrintPrompt();
if (Shiftorium.UpgradeInstalled("wm_free_placement"))
{
this.ParentForm.Width = 640;
@@ -276,7 +276,7 @@ namespace ShiftOS.WinForms.Applications
}
if (TerminalBackend.PrefixEnabled)
{
- Console.Write($"{SaveSystem.CurrentSave.Username}@{SaveSystem.CurrentSave.SystemName}:~$ ");
+ TerminalBackend.PrintPrompt();
}
}
}