aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorIBMPCDOS5 <[email protected]>2017-10-14 13:44:48 -0500
committerGitHub <[email protected]>2017-10-14 13:44:48 -0500
commitb0fb6ed50e8108b4c5f4ef8614368664e79d4426 (patch)
treea99eba02a00fe5c0d9dd445cc5f82100a40ead9f /ShiftOS.Main/ShiftOS/Desktop.cs
parentdb714a32b91ae577f256347c71137a7a41dfca37 (diff)
parent9952cfd7eb666e04de3b51d1e7dbade8d9168b11 (diff)
downloadshiftos-rewind-b0fb6ed50e8108b4c5f4ef8614368664e79d4426.tar.gz
shiftos-rewind-b0fb6ed50e8108b4c5f4ef8614368664e79d4426.tar.bz2
shiftos-rewind-b0fb6ed50e8108b4c5f4ef8614368664e79d4426.zip
Merge pull request #10 from Alex-TIMEHACK/master
Terminal. With a little example command.
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Desktop.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Desktop.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/ShiftOS.Main/ShiftOS/Desktop.cs b/ShiftOS.Main/ShiftOS/Desktop.cs
index 494222a..06f1fc8 100644
--- a/ShiftOS.Main/ShiftOS/Desktop.cs
+++ b/ShiftOS.Main/ShiftOS/Desktop.cs
@@ -57,5 +57,12 @@ namespace ShiftOS.Main.ShiftOS
private void timer1_Tick(object sender, EventArgs e) =>
taskbarClock.Text = $"{DateTime.Now:t}";
- }
+
+ private void terminalToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ Apps.Terminal trm = new Apps.Terminal();
+
+ ShiftWM.Init(trm, "Terminal", null, false, true);
+ }
+ }
}