I need to build a terminal that looks like this: https://i.stack.imgur.com/yFGCK.png
the rule is always the same column indicate the numbers and letters ABC are your input. is possible to do with ncurses or gtk-vte? any suggestions?
so far i got this:
import gtk
import vte
window = gtk.Window()
window.set_title("EDAL")
window.fullscreen()
scroll = gtk.ScrolledWindow()
shell = vte.Terminal()
shell.connect("child-exited", gtk.main_quit)
shell.fork_command()
scroll.add(shell)
window.add(scroll)
window.connect('delete-event', gtk.main_quit)
window.show_all()
gtk.main()