mirror of
https://github.com/nikhilroxtomar/Simple-Operating-System-from-Scratch.git
synced 2025-08-01 23:54:16 +00:00
Add files via upload
This commit is contained in:
8
user/taskbar/taskbar.c
Normal file
8
user/taskbar/taskbar.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include "../../include/print.h"
|
||||
|
||||
void taskbar(){
|
||||
print("\n");
|
||||
char* user="User: root";
|
||||
clearLine(ROWS-1, ROWS, 0x4f);
|
||||
printLine(ROWS-1, ROWS, user, 0x4f);
|
||||
}
|
6
user/taskbar/taskbar.h
Normal file
6
user/taskbar/taskbar.h
Normal file
@ -0,0 +1,6 @@
|
||||
#ifndef __TASKBAR_H__
|
||||
#define __TASKBAR_H__
|
||||
|
||||
void taskbar();
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user