aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-10-01 09:49:14 -0500
committerFloppyDiskDrive <[email protected]>2017-10-01 09:49:14 -0500
commitc23e42cc396d4fc55799d659bae2149cc183dbf6 (patch)
tree42363d4b2085946f4e6f3b38ae9b9334521a2c28 /ShiftOS.Main/ShiftOS/Desktop.cs
parentf2ed0c673c2d3f0e021b0307a22792af66fd217d (diff)
downloadshiftos-rewind-c23e42cc396d4fc55799d659bae2149cc183dbf6.tar.gz
shiftos-rewind-c23e42cc396d4fc55799d659bae2149cc183dbf6.tar.bz2
shiftos-rewind-c23e42cc396d4fc55799d659bae2149cc183dbf6.zip
Added a fuckton of changes
New infobox icons, new WIP port of Snakey, we are getting closer to a pre-alpha!
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Desktop.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Desktop.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/ShiftOS.Main/ShiftOS/Desktop.cs b/ShiftOS.Main/ShiftOS/Desktop.cs
index 494222a..1ea4183 100644
--- a/ShiftOS.Main/ShiftOS/Desktop.cs
+++ b/ShiftOS.Main/ShiftOS/Desktop.cs
@@ -8,6 +8,9 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ShiftOS.Engine.WindowManager;
+using ShiftOS.Main.ShiftOS.Apps;
+using ShiftOS.Main.Properties;
+using ShiftOS.Engine;
namespace ShiftOS.Main.ShiftOS
{
@@ -57,5 +60,10 @@ namespace ShiftOS.Main.ShiftOS
private void timer1_Tick(object sender, EventArgs e) =>
taskbarClock.Text = $"{DateTime.Now:t}";
- }
+
+ private void toolStripDropDownButton1_Click(object sender, EventArgs e)
+ {
+ ShiftWM.Init(new Snakey(), "Snakey - WIP", Resources.iconSnakey.ToIcon(), false, true);
+ }
+ }
}