diff --git a/myShit/start.gs b/myShit/start.gs index 037cce0..b41462c 100644 --- a/myShit/start.gs +++ b/myShit/start.gs @@ -2,4 +2,25 @@ homePW = #envar homePW doomKey = #envar doomKey doomPath = "/root/doom" -myShell = get_shell +myShell = get_shell("root", homePW) + +if not myShell then print("Unable to get root shell\n") + +i = 0 +while i < 4 + myShell.start_terminal + wait 2 + i = i + 1 +end while +i = 0 + +// Debug for my own curiosity +somePath = launch_path +print("\n Debug log: \n Parent path: " + parent_path(somePath)) + + +myShell.launch("/usr/bin/Chat.exe") +myShell.launch("/usr/bin/AdminMonitor.exe") +myShell.launch("/usr/bin/FileExplorer.exe") +myShell.launch("/usr/bin/Mail.exe") +myShell.launch("/usr/bin/Notepad.exe")