I want to use ncurses to create overlays on top of the current terminal. From looking at C examples there is a cur_scr
variable which contains the data for the current screen, which I assume I can use to clear the screen, to create the appearance of ncurses overlaying the terminal.
I want to do this with ruby ncurses which seems to be problematic, because I do not know how to access the cur_scr
variable from ruby.
How can I do this?