#
# QtermTab - Query terminal table for qterm.
#
#SendStr ReceiveStr TermName FullTermName
#
^[Z ^[[?1;0c vt100 Base vt100
^[Z ^[[?1;1c vt100 vt100 with STP
^[Z ^[[?1;2c vt100 ANSI/VT100 Clone
...
^[Z ^[/K h29 Zenith z29 in zenith mode
^[Z ^[/Z vt52 Generic vt52
^[Z ^[[0n vt100 AT&T Unix PC 7300
If your terminal isn't listed here, you can just add
it. To find out your terminal's response to the
query string, just echo ESC Z to your terminal and see what the
response is. For example, I logged in from my Macintosh terminal
emulator at home and found that qterm
didn't recognize my terminal type:
% qterm
Terminal NOT recognized - defaults to "vt100".
vt100
qterm defaults to the right terminal description,
but I'd still rather define my own entry. I find out
my terminal's response to the ESC Z string:
% echo "^[Z"
^[[E;Y|
(Note that ESC prints as ^[.) Then I add the entry
to my qterm description file:
^[Z ^[[E;Y| vt100 Macintosh terminal emulator
Now when I run qterm, the terminal is recognized:
% qterm
Terminal recognized as vt100 (Macintosh terminal emulator)
vt100