/*
 *
 * info  Version 0.5  18JAN84
 *
 * This is the master script for building the `info' subtree.
 *
 */
/*
 * TNIX Version
 * Keyshell Version Number 1
 */

info
{
>
>\kwho is on\e - Lists who is logged in.
>
>\kdate\e - Gives the date and time.
>
>\kdiskspace\e - Gives the number of unused 512-byte disk blocks.
>
>\kprinter\e - Shows who has files queued for printing.
>
>\kkeyconfig\e - Shows the functions the ColorKey+ is currently configured for.
>            \mNote:  Run 'setksh' to choose different functions.\n
>
>\kkeylayout\e - Copies a map showing the layout of all the keys to the graphics
>            area of the 410x terminal.  Toggle the "Dialog" key to turn this
>            display on and off.
>\ksetcolor\e - Initializes the Tektronix 410x terminal to default parameters.
>
>
>\kdone\e - Returns to the top-level keys.
>            

	msg;
	f1;who is on; {
                cmd (^who), exec, msg, break;
        };
	f2;date; {
                cmd (^date), exec, msg, break;
        };
	f3;diskspace; {
                cmd (^df), msg(^Calculating free disk space...), exec, msg, break;
        };
	f4;printer; {
                cmd(^ls -l /usr/spool/lp*), exec, msg, break; 
        };
	f5;keyconfig; {
		msg (^Displaying the current ColorKey+ configuration.),
		cmd (^keyconfig), exec, msg, break;
	};
	f6;keylayout; {
		msg (^Copying a map showing the key layout to the 410x graphics area.),
		cmd (^keylayout), exec, msg, break;
	};
	f7;setcolor; {
		msg (^Setting default parameters on Tektronix 410x terminal),
		cmd (^setcolor), exec, msg, break;
	};
	f8;done; msg (^), break;
}
