aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb
blob: 48caef6b47671a5bf1c572da36f1d854c5ef256a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Module Com_App
    Public AppName As String

    Public Sub App()
        AppName = command.Substring(4)
        Select Case Strings.ComputerInfo(7)
            Case 1
                Select Case AppName
                    Case "knowledge_input"
                        If Strings.AvailableFeature(37) = 1 Then
                            DuWM_NewProcess(Uni_KnowledgeInput)
                        End If
                    Case "shifter"
                        If Strings.AvailableFeature(36) = 1 Then
                            DuWM_NewProcess(DuWM_Shifter)
                        End If
                    Case "file_skimmer"
                        DuWM_NewProcess(Uni_FileSkimmer)
                End Select
        End Select
    End Sub
End Module