aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/API/TerminalAPI.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-12-03 23:16:06 +0700
committerEverythingWindows <[email protected]>2022-12-03 23:16:06 +0700
commit0e6eb6e76f8227b8055f5ea032f9582dcacee5f5 (patch)
treed4dd7645353ed283b480ee9f2adea0f20a81e590 /ShiftOS-TheRevival/API/TerminalAPI.vb
parent16094d6b2fd9409d0866ac8f62ca355a383ebb1e (diff)
downloadshiftos-therevival-old-0e6eb6e76f8227b8055f5ea032f9582dcacee5f5.tar.gz
shiftos-therevival-old-0e6eb6e76f8227b8055f5ea032f9582dcacee5f5.tar.bz2
shiftos-therevival-old-0e6eb6e76f8227b8055f5ea032f9582dcacee5f5.zip
Console Font finished and the foundation of new window manager is there
Diffstat (limited to 'ShiftOS-TheRevival/API/TerminalAPI.vb')
-rw-r--r--ShiftOS-TheRevival/API/TerminalAPI.vb6
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/API/TerminalAPI.vb b/ShiftOS-TheRevival/API/TerminalAPI.vb
index 10a6214..65faa9e 100644
--- a/ShiftOS-TheRevival/API/TerminalAPI.vb
+++ b/ShiftOS-TheRevival/API/TerminalAPI.vb
@@ -14,6 +14,7 @@ Module TerminalAPI
Cursor.Hide()
Strings.OnceInfo(7) = Console.Width
Strings.OnceInfo(8) = Console.Height
+ Console.TextBox1.Font = New Font("Consolas", 11)
If Strings.IsFree = True Then
Strings.ComputerInfo(0) = "shiftos"
Strings.ComputerInfo(1) = "user"
@@ -55,6 +56,11 @@ Module TerminalAPI
Cursor.Show()
Console_Windowed()
Console.TopMost = True
+ Try
+ Console.TextBox1.Font = GUISCustomizations.GUIConsoleFont
+ Catch ex As Exception
+ Console.TextBox1.Font = New Font("Consolas", 11)
+ End Try
Terminal_PrintPrompt()
Terminal_AssignPrompt()
End If