Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How are command-line GUIs made? [closed]

I've always wanted to know how CL GUIs like top or nano or vi are constructed? I have a need to actually make one and am looking for a guide or tutorial on the general idea behind them.

like image 965
Dabloons Avatar asked Feb 22 '12 15:02

Dabloons


2 Answers

Here is a bunch of them.

Also there is a list.

  • CDK
  • Dialog
  • ncurses
  • Newt, a widget-based toolkit
  • PDCurses
  • SMG$
  • Turbo Vision
like image 141
Shiplu Mokaddim Avatar answered Sep 18 '22 17:09

Shiplu Mokaddim


You could start by reading about ncurses, it’s a very well-known library to draw on the terminal

like image 25
qdii Avatar answered Sep 18 '22 17:09

qdii