diff options
| author | EverythingWindows <[email protected]> | 2022-11-05 05:36:43 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-05 05:36:43 +0700 |
| commit | 60b6ce686dfd812c6f808a01463473610787e15c (patch) | |
| tree | d7361a19c15d58f25f2eba4e0f8280cd77f47403 /ShiftOS-TheRevival/MainForms/TerminalApps.vb | |
| parent | 552304f614c30c8be8d2e5f042b39cadf3477bcf (diff) | |
| download | shiftos-therevival-old-60b6ce686dfd812c6f808a01463473610787e15c.tar.gz shiftos-therevival-old-60b6ce686dfd812c6f808a01463473610787e15c.tar.bz2 shiftos-therevival-old-60b6ce686dfd812c6f808a01463473610787e15c.zip | |
neofetch ported to shiftfetch
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/TerminalApps.vb')
| -rw-r--r-- | ShiftOS-TheRevival/MainForms/TerminalApps.vb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/MainForms/TerminalApps.vb b/ShiftOS-TheRevival/MainForms/TerminalApps.vb index 8d1dd25..b493118 100644 --- a/ShiftOS-TheRevival/MainForms/TerminalApps.vb +++ b/ShiftOS-TheRevival/MainForms/TerminalApps.vb @@ -21,6 +21,12 @@ Terminal.CurrentInterpreter = "guess" GTN_GenerateNumber() ShouldChange = True + Case "shiftoriumfx" + Terminal.DefaultPrompt = "Navigate> " + Terminal.CurrentInterpreter = "shiftoriumfx" + ShiftoriumFX_DisplayPackages() + Terminal.TextBox1.Text = Terminal.TextBox1.Text & Environment.NewLine & Environment.NewLine & "Type any package you want to investigate" + ShouldChange = True End Select If ShouldChange = True Then Terminal.ChangeInterpreter = True @@ -48,6 +54,16 @@ Terminal.TextBox1.Text = Terminal.TextBox1.Text & Environment.NewLine & "Invalid value!" End Try End Select + Case "shiftoriumfx" + Select Case Terminal.command + Case "" + + Case "exit" + TerminateApp() + Case Else + ShiftoriumFX_DisplayPackages() + Terminal.TextBox1.Text = Terminal.TextBox1.Text & Environment.NewLine & Environment.NewLine & "Type any package you want to investigate" & Environment.NewLine & "Invalid package or bad command" + End Select End Select End Sub @@ -74,4 +90,9 @@ End If End If End Sub + + Public Sub ShiftoriumFX_DisplayPackages() + Terminal.TextBox1.Text = "Shiftorium FX!" & Environment.NewLine & "The place to shiftisize the ShiftOS" & Environment.NewLine & Environment.NewLine & "Available Package(s)" + Shiftorium_ListFeatures() + End Sub End Module |
