Tagged Questions
The terminfo tag has no wiki summary.
6
votes
3answers
629 views
How do I determine if a terminal is color-capable?
I would like to change a program to automatically detect whether a terminal is color-capable or not, so when I run said program from within a non-color capable terminal (say M-x shell in (X)Emacs), ...
2
votes
1answer
157 views
How many spaces to a tab on this tty
I have a perl script that is writing to stdout which is a tty. Is there a way to determine how many spaces to a tab on that tty?
1
vote
1answer
69 views
How to install a terminfo entry (eterm-color from Emacs)?
I want to run GNU Screen from within an Emacs term-mode buffer. When I try to do this I get an error:
$ screen
Cannot find terminfo entry for 'eterm-color'.
This error suggests that I should ...
1
vote
1answer
36 views
How to set custom search paths for the terminfo database when building ncurses from source
Dia daoibh,
How do I set custom search paths for the terminfo database when building ncurses from source?
To be more specific, how to I force the primary directory to be searched to '~/.terminfo'?
...
1
vote
2answers
72 views
Get terminal position from Ruby
There has absolutely got to be a better way to do this.
temp_file ||= Tempfile.new()
system("stty -echo; tput u7; read -d R x; stty echo; echo ${x#??} > #{temp_file.path}")
...
1
vote
1answer
81 views
Why setupterm terminates the program?
This is sample program from "Beginning Linux Programming" book:
#include <stdio.h>
#include <term.h>
#include <curses.h>
#include <stdlib.h>
int main()
{
setupterm("unlisted", ...
1
vote
0answers
59 views
Is there a tool to clean the output of the script(1) tool?
script(1) is a tool for keeping a record of an interactive terminal session; by default it writes to the file transcript. My problem is that I use ksh93, which has readline features, and so the ...
0
votes
1answer
149 views
Printing double-size characters with Ncurses
Many terminal emulators (xterm, Konsole) support double-size characters. Ncurses does not support this and as far as I know, ncurses will not print escape characters (\033 will be unescaped and ...