diff options
| author | EverythingWindows <[email protected]> | 2022-11-24 22:51:51 +0700 |
|---|---|---|
| committer | EverythingWindows <[email protected]> | 2022-11-24 22:51:51 +0700 |
| commit | fb1e91c76bda9662305b3025ea3e6a9d72c9fe0b (patch) | |
| tree | 54e664674cf55f0764a178bc6d3456591a925b0e /ShiftOS-TheRevival/TerminalApplications/Internal | |
| parent | 9754f495672581abd7098c39027b512525b5f9ab (diff) | |
| download | shiftos-therevival-old-fb1e91c76bda9662305b3025ea3e6a9d72c9fe0b.tar.gz shiftos-therevival-old-fb1e91c76bda9662305b3025ea3e6a9d72c9fe0b.tar.bz2 shiftos-therevival-old-fb1e91c76bda9662305b3025ea3e6a9d72c9fe0b.zip | |
rough 0.2.7
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal')
3 files changed, 44 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Applist.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Applist.vb new file mode 100644 index 0000000..63941a1 --- /dev/null +++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Applist.vb @@ -0,0 +1,13 @@ +Module Com_Applist + Public Sub AppList() + NewLine("ShiftOS Graphical Application List") + NewLine("To run a program, you can type 'app ' and the name of the program listed below (along with its underscore or any symbols included)") + NewLine(Nothing) + If Strings.AvailableFeature(37) = 1 Then + NewLine("KNOWLEDGE_INPUT Simple puzzle game where you guess as many things as you can") + End If + If Strings.AvailableFeature(36) = 1 Then + NewLine("SHIFTER Graphical customization program for ShiftOS") + End If + End Sub +End Module diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Guide.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Guide.vb index 116ba22..da1bbeb 100644 --- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Guide.vb +++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Guide.vb @@ -15,6 +15,17 @@ If Strings.AvailableFeature(0) = 1 Then NewLine("To get any help for each command in the operating system, you can type 'man' and the name of the feature") NewLine(Nothing) + Else + NewLine(Nothing) + End If + If Strings.ComputerInfo(7) IsNot "0" Then + NewLine("You can run a graphical user Interface With its installed window manager And desktop environment by typing 'startg', and stopping it by typing 'stopg'") + If IsStartG = True Then + NewLine("To run a program, type 'app ' and the program's name, and 'applist' for getting list of available applications") + NewLine(Nothing) + Else + NewLine(Nothing) + End If End If If Strings.AvailableFeature(5) = 1 Then NewLine("Time is displayed by seconds since 0:00 format such as 660 seconds since midnight is 0:11") @@ -92,6 +103,11 @@ If Strings.AvailableFeature(34) = 1 Then AddLine(", answer basic arithmatical question on 'mathquiz'") End If + If IsStartG = True Then + If Strings.AvailableFeature(37) = 1 Then + AddLine(", guess as many things as you can in 'knowledge_input'") + End If + End If AddLine(".") End Sub End Module diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb index 020ab7b..be415f6 100644 --- a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb +++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Help.vb @@ -4,12 +4,19 @@ NewLine(Nothing) NewLine("You can type 'help' to get all available commands and its corresponding action.") NewLine("Type 'guide' to get the rough definitive guide on using ShiftOS") + If IsStartG = True Then + NewLine("To get lists of available applications, you can type 'applist'") + End If If Strings.AvailableFeature(0) = 1 Then NewLine("To get help on each command, you can type 'man [command]'") NewLine(Nothing) Else NewLine(Nothing) End If + If IsStartG = True Then + NewLine("APP Running graphical application") + NewLine("APPLIST Shows lists of available graphical applications") + End If If Strings.AvailableFeature(9) = 1 Then NewLine("BC Basic Calculator for simple calculation") End If @@ -88,7 +95,15 @@ End If NewLine("SHIFTORIUM A software center for upgrading features on ShiftOS") NewLine("SHUTDOWN Terminate ShiftOS session") + If IsStartG = False Then + NewLine("STARTG Starts Graphical User Interface for ShiftOS") + Else + NewLine("STOPG Stops Graphical User Interface for ShiftOS") + End If NewLine("SU Runs terminal as super user") + If IsStartG = True Then + NewLine("TASKKILL Kills or closes application") + End If If Strings.AvailableFeature(17) = 1 Then NewLine("TEXTPAD Simple text-editor for ShiftOS") End If |
