Fernando Codes

Diving Into Linux Terminal Architecture pt. 1

Fernando Picazo

Diving into Linux terminal architecture #

One of my current fixations is watching Togglebit’s Twitch stream where he works on his project Anathema. Anathema is a TUI graphics library, but it got me thinking of what actually goes on under the covers of a terminal. I dove into the rabbit hole that is the linux terminal and came out with even more questions. How does the operating system support terminals? Terminals are actually devices? There are terminals and pseudoterminals, how do they provide almost identical functionality?

As I go through cataloguing my information, I think the best way to catalogue knowledge is to do a actually implement a new TUI library. So here is my proposed design, admittedly overambitious.

Designing a new tui library in C #

Current Goals #

From most important to least important for me

NCurses/Curses independence #

Multiple Operation Modes #

Terminal Evaluation #

Multi Threading #

Be able to have multiple threads safely working within the same application. Likely the best way is to implement multi region

Primary targets #

Debian’s GNOME terminal, this is the default terminal that came with my Debian installation on

Later Targets #

In order from most likely to least likely

Functional Goals #

Purpose #

The primary reason for this project is just for learning the inner workings of terminals in Linux. How virtual terminals and terminal emulators are related. The goal of this project will never be to become primetime contender to ncurses, there is already the awesome library by Nick Black notcurses

Secondary goals: #

Inspirations #

anathema - the initial inspiration for this project, after going down the terminal rendering rabbit hole. notcurses - the primary contender as a C based replacement for ncurses

I promise I won’t cheat too much on these projects.

Tags
Categories