diff options
| author | EverythingWindows <[email protected]> | 2022-11-07 14:59:14 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-07 14:59:14 +0700 |
| commit | 8e9314fd63a107720e0473412b6328d4675fb025 (patch) | |
| tree | 43e52c364b960a9b3b9a45df1948350f02b3cb00 /ShiftOS-TheRevival | |
| parent | a31f574e324bcb1ca2492a22cabaf311abe80f74 (diff) | |
| download | shiftos-therevival-old-8e9314fd63a107720e0473412b6328d4675fb025.tar.gz shiftos-therevival-old-8e9314fd63a107720e0473412b6328d4675fb025.tar.bz2 shiftos-therevival-old-8e9314fd63a107720e0473412b6328d4675fb025.zip | |
Shiftorium help stuffy
Diffstat (limited to 'ShiftOS-TheRevival')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/Terminal.vb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/Terminal.vb b/ShiftOS-TheRevival/MainForms/Terminal.vb index d064761..05988e4 100644 --- a/ShiftOS-TheRevival/MainForms/Terminal.vb +++ b/ShiftOS-TheRevival/MainForms/Terminal.vb @@ -278,6 +278,10 @@ Public Class Terminal AdvancedCommand = False BadCommand = False InitializeTerminal() + Case "shiftorium" + TextBox1.Text = TextBox1.Text & Environment.NewLine & My.Resources.man_shiftorium + AdvancedCommand = False + BadCommand = False Case "shiftfetch" If Strings.AvailableFeature(8) = "1" Then If Strings.OnceInfo(0) = "Yes" Then @@ -324,6 +328,12 @@ Public Class Terminal Cursor.Show() ShiftOSMenu.Show() Close() + Case "textpad" + If Strings.AvailableFeature(17) = "1" Then + TextBox1.Text = TextBox1.Text & "Type any filename after 'textpad'!, ex: textpad text.txt" + AdvancedCommand = False + BadCommand = False + End If Case "time" If Strings.AvailableFeature(5) = "1" Then TextBox1.Text = TextBox1.Text & Environment.NewLine & Math.Floor(Date.Now.Subtract(Date.Today).TotalSeconds) & " seconds passed since midnight" |
