Skip to content

Simple system monitor written on C using curses library.

License

Notifications You must be signed in to change notification settings

AlexRazor1337/bonsai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bonsai

This is really simple resource monitor for unix systems written on C using curses library. Currently it shows CPU utilization, RAM usage and current time.

How to use

  1. Clone or download this repository.
  2. Run Makefile: make
  3. Run the binary: ./bonsai

Note: you actually can change ASCII image to your own. For this just change the content of the "bs" file. Default one has date and time in the pot(literally), for your custom image find a place where you want it to be and put "%s" there. Also, watch out for special formating characters (e.g no "random %" or "\n" in image).

The goal of this little project is to practice with curses library, system interaction and 4coder text editor(although 4coder project files are not included here).