aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_App.vb
blob: e7b22f10aa5f16699a91e2466a95eae96d52e569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
                End Select
        End Select
    End Sub
End Module