aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb
diff options
context:
space:
mode:
authorEverythingWindows <[email protected]>2022-11-16 08:28:22 +0700
committerEverythingWindows <[email protected]>2022-11-16 08:28:22 +0700
commit415ee1e40d41886cb7ccf23ee004c7fa67dd7418 (patch)
tree83a2224b490de0421e8f00b000f014a81a34acb3 /ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb
parent5aceb7cf1efbfa21ab6a56e2e0cde13774217f97 (diff)
downloadshiftos-therevival-old-415ee1e40d41886cb7ccf23ee004c7fa67dd7418.tar.gz
shiftos-therevival-old-415ee1e40d41886cb7ccf23ee004c7fa67dd7418.tar.bz2
shiftos-therevival-old-415ee1e40d41886cb7ccf23ee004c7fa67dd7418.zip
More enhanced code management and DesktopEnvironment experiments
Diffstat (limited to 'ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb')
-rw-r--r--ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb6
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb
new file mode 100644
index 0000000..0f8b4e7
--- /dev/null
+++ b/ShiftOS-TheRevival/TerminalApplications/Internal/Com_Username.vb
@@ -0,0 +1,6 @@
+Module Com_Username
+ Public Sub Username()
+ Strings.ComputerInfo(1) = command.Substring(command.LastIndexOf(" ") + 1, command.Length - (command.LastIndexOf(" ") + 1))
+ Terminal_AssignPrompt()
+ End Sub
+End Module