ZealOS/HomeSys.HC
xmm15 70a677b281 vboxmnt.sh
Added Cls, new tasks' default name is "Terminal"
2020-02-15 14:24:48 -06:00

37 lines
714 B
HolyC
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//Place this file in /Home and change
//anything you want.
U0 UserStartUp()
{//Run each time a user a spawned
DocTermNew;
Type("::/Doc/Start.DD");
LBts(&Fs->display_flags,DISPLAYf_SHOW);
WinToTop;
WinZBufUpdate;
Dir;
}
U0 SrvStartUp()
{//Run each time a srv task is spawned.
DocTermNew;
LBts(&Fs->display_flags,DISPLAYf_SHOW);
WinToTop;
WinZBufUpdate;
}
U0 StartUpTasks()
{
CTask *user = User;
WinToTop(user);
WinTileVert;
"Boot Time:%7.3fs\n",tS;
XTalk(user,"Cd;#include \"Once\";\n");
Silent;//no output to scrn
ACInit("/*;!*/Bible.TXT*");
Silent(OFF); //no output to scrn
}
StartUpTasks;
"\nTempleOS V%5.3f\t%D %T\n\n",sys_os_version,sys_compile_time,sys_compile_time;