2020-02-15 20:01:48 +00:00
|
|
|
//Place this file in /Home and change
|
|
|
|
//anything you want.
|
|
|
|
|
|
|
|
//This file is executed by the
|
|
|
|
//first terminal window upon start-up.
|
2021-12-11 11:21:22 +00:00
|
|
|
//See $LK,"Once",A="FF:~/HomeSys.ZC,Once"$ and $LK,"Home Files",A="FF:::/Doc/GuideLines.DD,/Home Files"$.
|
2020-02-15 20:01:48 +00:00
|
|
|
|
|
|
|
//Delete the rest from this file.
|
|
|
|
|
|
|
|
U0 Tmp()
|
|
|
|
{
|
2020-02-20 23:40:10 +00:00
|
|
|
OnceExe;
|
2020-04-11 23:19:38 +01:00
|
|
|
switch (sys_boot_src.u16[0])
|
|
|
|
{
|
2020-02-20 23:40:10 +00:00
|
|
|
case BOOT_SRC_ROM:
|
|
|
|
"Continue booting hard drive ";
|
2020-04-11 23:19:38 +01:00
|
|
|
if (YorN)
|
|
|
|
{
|
2020-02-20 23:40:10 +00:00
|
|
|
DocBottom;
|
|
|
|
ExeFile("C:/Home/Once");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BOOT_SRC_DVD:
|
|
|
|
"\nIf you answer 'No' you can play with\n"
|
2021-07-05 20:23:13 +01:00
|
|
|
"the live CD without installing.\n\n"
|
|
|
|
"Install onto hard drive ";
|
|
|
|
|
2020-04-11 23:19:38 +01:00
|
|
|
if (YorN)
|
|
|
|
{
|
2020-02-20 23:40:10 +00:00
|
|
|
DocBottom;
|
2021-07-02 09:24:53 +01:00
|
|
|
RunFile("::/Misc/OSInstall",, TRUE);
|
2020-02-20 23:40:10 +00:00
|
|
|
}
|
2020-04-11 23:19:38 +01:00
|
|
|
if (FileFind("::/Misc/Tour"))
|
|
|
|
{
|
2020-02-20 23:40:10 +00:00
|
|
|
"\nTake Tour";
|
|
|
|
if (YorN) {
|
|
|
|
DocBottom;
|
|
|
|
Cd("::/Misc/Tour");
|
|
|
|
InFile("Tour");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BOOT_SRC_HARDDRIVE:
|
2020-04-23 05:46:41 +01:00
|
|
|
case BOOT_SRC_RAM:
|
2021-07-29 03:20:15 +01:00
|
|
|
"\n$$PURPLE$$$$TX+CX,\"Tips of the Day\"$$$$FG$$\n";
|
|
|
|
TipOfDay;Yield;
|
2020-02-20 23:40:10 +00:00
|
|
|
TipOfDay;
|
2021-07-14 23:38:02 +01:00
|
|
|
Type("::/Doc/Customize.DD");
|
2020-02-20 23:40:10 +00:00
|
|
|
break;
|
2020-02-15 20:01:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Tmp;
|