Need help. Trying to figure out how to make a task bar for OS through Github in typescript

23 Views Asked by At

Enhance the host display with a graphic task bar that displays...

• the current date and time

• status messages as specified by the user with a new shell command:
status example:status I love Operating Systems

I have a date object already created: ``

    public shellDate(args: string[]) {
         let shelldate = new Date ();
         _StdOut.putText(shelldate.toString());   
            
    }

I am confused on how I code and implement the task bar object

0

There are 0 best solutions below