mirror of
https://github.com/EverythingWindows/ShiftOS-TheRevival-Old.git
synced 2025-04-21 02:50:25 +00:00
Compare commits
No commits in common. "master" and "0.2.8" have entirely different histories.
7 changed files with 10 additions and 24 deletions
|
@ -19,7 +19,7 @@ Module TerminalAPI
|
|||
If Strings.IsFree = True Then
|
||||
Strings.ComputerInfo(0) = "shiftos"
|
||||
Strings.ComputerInfo(1) = "user"
|
||||
Strings.ComputerInfo(7) = 2
|
||||
Strings.ComputerInfo(7) = 1
|
||||
Terminal_CheckFeature()
|
||||
Terminal_PrintPrompt()
|
||||
Terminal_AssignPrompt()
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
Public Shared CLIInterpreter As String
|
||||
Public Shared SaveFile As String
|
||||
Public Shared Achievement As String
|
||||
Public Shared ProcessID(15) As String
|
||||
Public Shared ProcessID(1) As String
|
||||
|
||||
'STRING CATEGORIZATION WRITING RULES!
|
||||
'THIS IS IN ORDER TO REMAIN COMPATIBLE WITH OLDER VERSIONS!
|
||||
|
|
|
@ -23,9 +23,7 @@ Module DesktopManager
|
|||
If Strings.OnceInfo(6) = "story" Then
|
||||
SaveGame()
|
||||
End If
|
||||
If Strings.ComputerInfo(7) = 1 Then
|
||||
MsgBox("this is not a bug, this is a feature") 'Use this messagebox to hold Console to stay open, because removing this line closes Console all together for some reason
|
||||
End If
|
||||
MsgBox("this is not a bug, this is a feature") 'Use this messagebox to hold Console to stay open, because removing this line closes Console all together for some reason
|
||||
Console.Show()
|
||||
Desktop.Hide()
|
||||
End Sub
|
||||
|
@ -46,8 +44,6 @@ Module DesktopManager
|
|||
Select Case Strings.ComputerInfo(7)
|
||||
Case 1
|
||||
DuWM_Initiate()
|
||||
Case 2
|
||||
AnusWM_Initiate()
|
||||
End Select
|
||||
End Sub
|
||||
End Module
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
Module AnusWM_Main
|
||||
Public Sub AnusWM_Initiate()
|
||||
AnusWM_Menu.Show()
|
||||
AnusWM_Menu.Location = New Point(25, 25)
|
||||
End Sub
|
||||
End Module
|
|
@ -51,31 +51,31 @@ Partial Class AnusWM_Menu
|
|||
'ToolStripMenuItem1
|
||||
'
|
||||
Me.ToolStripMenuItem1.Name = "ToolStripMenuItem1"
|
||||
Me.ToolStripMenuItem1.Size = New System.Drawing.Size(132, 4)
|
||||
Me.ToolStripMenuItem1.Size = New System.Drawing.Size(106, 4)
|
||||
'
|
||||
'ApplicationsToolStripMenuItem
|
||||
'
|
||||
Me.ApplicationsToolStripMenuItem.Name = "ApplicationsToolStripMenuItem"
|
||||
Me.ApplicationsToolStripMenuItem.Size = New System.Drawing.Size(132, 25)
|
||||
Me.ApplicationsToolStripMenuItem.Size = New System.Drawing.Size(106, 25)
|
||||
Me.ApplicationsToolStripMenuItem.Text = "Applications"
|
||||
'
|
||||
'ShifterToolStripMenuItem
|
||||
'
|
||||
Me.ShifterToolStripMenuItem.Name = "ShifterToolStripMenuItem"
|
||||
Me.ShifterToolStripMenuItem.Size = New System.Drawing.Size(132, 25)
|
||||
Me.ShifterToolStripMenuItem.Size = New System.Drawing.Size(106, 25)
|
||||
Me.ShifterToolStripMenuItem.Text = "Shifter"
|
||||
'
|
||||
'AboutToolStripMenuItem
|
||||
'
|
||||
Me.AboutToolStripMenuItem.Name = "AboutToolStripMenuItem"
|
||||
Me.AboutToolStripMenuItem.Size = New System.Drawing.Size(132, 25)
|
||||
Me.AboutToolStripMenuItem.Size = New System.Drawing.Size(106, 25)
|
||||
Me.AboutToolStripMenuItem.Text = "About"
|
||||
'
|
||||
'ExitToolStripMenuItem
|
||||
'
|
||||
Me.ExitToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.StopAnusWMToolStripMenuItem, Me.RestartToolStripMenuItem, Me.ShutdownToolStripMenuItem})
|
||||
Me.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem"
|
||||
Me.ExitToolStripMenuItem.Size = New System.Drawing.Size(132, 25)
|
||||
Me.ExitToolStripMenuItem.Size = New System.Drawing.Size(106, 25)
|
||||
Me.ExitToolStripMenuItem.Text = "Exit"
|
||||
'
|
||||
'StopAnusWMToolStripMenuItem
|
||||
|
@ -98,10 +98,10 @@ Partial Class AnusWM_Menu
|
|||
'
|
||||
'lbl_Title
|
||||
'
|
||||
Me.lbl_Title.BackColor = System.Drawing.Color.Gray
|
||||
Me.lbl_Title.BackColor = System.Drawing.Color.Black
|
||||
Me.lbl_Title.Dock = System.Windows.Forms.DockStyle.Top
|
||||
Me.lbl_Title.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Italic)
|
||||
Me.lbl_Title.ForeColor = System.Drawing.Color.Black
|
||||
Me.lbl_Title.ForeColor = System.Drawing.Color.White
|
||||
Me.lbl_Title.Location = New System.Drawing.Point(0, 0)
|
||||
Me.lbl_Title.Name = "lbl_Title"
|
||||
Me.lbl_Title.Size = New System.Drawing.Size(139, 25)
|
||||
|
@ -117,7 +117,6 @@ Partial Class AnusWM_Menu
|
|||
Me.ClientSize = New System.Drawing.Size(139, 137)
|
||||
Me.Controls.Add(Me.mnu_Main)
|
||||
Me.Controls.Add(Me.lbl_Title)
|
||||
Me.ForeColor = System.Drawing.Color.Gray
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
|
||||
Me.MainMenuStrip = Me.mnu_Main
|
||||
Me.Name = "AnusWM_Menu"
|
||||
|
|
|
@ -233,7 +233,6 @@
|
|||
</Compile>
|
||||
<Compile Include="API\ConsoleAPI.vb" />
|
||||
<Compile Include="API\TerminalAPI.vb" />
|
||||
<Compile Include="MainForms\WindowManager\codename AnusWM\AnusWM_Main.vb" />
|
||||
<Compile Include="MainForms\WindowManager\codename AnusWM\AnusWM_Menu.Designer.vb">
|
||||
<DependentUpon>AnusWM_Menu.vb</DependentUpon>
|
||||
</Compile>
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
Select Case Strings.ComputerInfo(7)
|
||||
Case 1
|
||||
AddLine("Dual Window Manager")
|
||||
Case 2
|
||||
AddLine("Anus Window Manager")
|
||||
End Select
|
||||
End If
|
||||
NewLine(" ^@@! : @Y .:::^~:. 7# Y@^ Desktop Environment: -")
|
||||
|
|
Loading…
Add table
Reference in a new issue