aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-10-14 16:23:41 +0100
committerAlex-TIMEHACK <[email protected]>2017-10-14 16:23:41 +0100
commit59a7eabcbe37d44a1cd4a9b742ce99f423a42ff7 (patch)
tree1c5b03e138a79947ad4c2935c7d8ffd73eb8a420 /ShiftOS.Main/ShiftOS/Desktop.cs
parentf2ed0c673c2d3f0e021b0307a22792af66fd217d (diff)
downloadshiftos-rewind-59a7eabcbe37d44a1cd4a9b742ce99f423a42ff7.tar.gz
shiftos-rewind-59a7eabcbe37d44a1cd4a9b742ce99f423a42ff7.tar.bz2
shiftos-rewind-59a7eabcbe37d44a1cd4a9b742ce99f423a42ff7.zip
Done like a few things but I need to update so....
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);
+ }
+ }
}