diff options
| author | AShifter <[email protected]> | 2017-11-25 08:59:48 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-11-25 08:59:48 -0700 |
| commit | c81573594f509177214bbc9b64427c8aabdc30a6 (patch) | |
| tree | 0f16be1fffc1e1557adafbd1baa9ff7aa16a3381 /ShiftOS.Main/Program.cs | |
| parent | 90b1bdca5f8f2bf634a0b83ed9b623843ada5661 (diff) | |
| download | shiftos-rewind-c81573594f509177214bbc9b64427c8aabdc30a6.tar.gz shiftos-rewind-c81573594f509177214bbc9b64427c8aabdc30a6.tar.bz2 shiftos-rewind-c81573594f509177214bbc9b64427c8aabdc30a6.zip | |
Add SaveSystem, FullScreen Terminal and stuff
Git had a horrible seizure and removed our repo but Alex-TIMEHACK helped
us get it back.
Diffstat (limited to 'ShiftOS.Main/Program.cs')
| -rw-r--r-- | ShiftOS.Main/Program.cs | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/ShiftOS.Main/Program.cs b/ShiftOS.Main/Program.cs index f7c00eb..acce816 100644 --- a/ShiftOS.Main/Program.cs +++ b/ShiftOS.Main/Program.cs @@ -15,7 +15,24 @@ namespace ShiftOS.Main Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Desktop()); - } + + + bool terminalMode = true; + if (terminalMode) + { + Form terminalForm = new Form(); + ShiftOS.Apps.Terminal term = new ShiftOS.Apps.Terminal(); + terminalForm.Controls.Add(term); + terminalForm.FormBorderStyle = FormBorderStyle.None; + terminalForm.WindowState = FormWindowState.Maximized; + term.Dock = DockStyle.Fill; + //terminalForm.Show(); + Application.Run(terminalForm); + } + else + { + Application.Run(new Desktop()); + } + } } }
\ No newline at end of file |
