aboutsummaryrefslogtreecommitdiff
path: root/PortEngine
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-08-26 14:44:04 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-08-26 14:44:04 -0400
commit8f6b0e2c3dd491428d1e47f66191a26636b8f4e9 (patch)
tree8b651a9d30dd85bc4d08acff7ec818988280a128 /PortEngine
parentee343916c292c741041167a1a77f4b59a95002c5 (diff)
downloadProject-Silicon-0.1-alpha.tar.gz
Project-Silicon-0.1-alpha.tar.bz2
Project-Silicon-0.1-alpha.zip
New Main Menuv0.1-alpha
Diffstat (limited to 'PortEngine')
-rw-r--r--PortEngine/TerminalAPI.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/PortEngine/TerminalAPI.cs b/PortEngine/TerminalAPI.cs
index 4c09dad..935bb50 100644
--- a/PortEngine/TerminalAPI.cs
+++ b/PortEngine/TerminalAPI.cs
@@ -13,11 +13,11 @@ namespace PortEngine
{
bool LastCommandWasClear = false;
+ txtConsoleOutput.AppendText(Properties.Settings.Default.userDisplayName + "@PortOS:~$ " + txtConsoleInput.Text + Environment.NewLine);
+
switch (txtConsoleInput.Text.ToLower())
{
-
-
case "help":
txtConsoleOutput.AppendText("help - lists the commands\r\ntest - displays a test message\r\nclear - clears the terminal\r\nchangeusername - changes your username for use with the Chatter application\r\n example: changeusername --TheBestUser" + Environment.NewLine);
break;