Questions tagged [xterm]

xterm is a terminal emulator for the X Window System.

In computing, xterm is the standard terminal emulator for the X Window System. A user can have many different invocations of xterm running at once on the same display, each of which provides independent input/output for the process running in it (normally the process is a Unix shell).

xterm originated prior to the X Window System. It was originally written as a stand-alone terminal emulator for the VAXStation 100 (VS100) by Mark Vandevoorde, a student of Jim Gettys, in the summer of 1984, when work on X started. It rapidly became clear that it would be more useful as part of X than as a standalone program, so it was retargeted to X. As Gettys tells the story, "part of why xterm's internals are so horrifying is that it was originally intended that a single process be able to drive multiple VS100 displays."

After many years as part of the X reference implementation, around 1996 the main line of development then shifted to XFree86 (which itself forked from X11R6.3), and it is presently actively maintained by Thomas Dickey.

Relevant links

546 questions
2
votes
2 answers

Why is the default vim's background option is differrent when run in gnome-terminal and gnu-screen?

I'm using Ubuntu 16.04 LTS with vim 7.4 and screen installed. My question is why when I open vim in the default ubuntu terminal the background option is dark while open it in gnu-screen it is light. You can see subtle different in syntax…
KenIchi
  • 1,129
  • 10
  • 22
2
votes
1 answer

shell script - open xterm window execute command and keep on executing script

Im writing a shell script and i need my script to open a xterm window run a command and without closing the xterm proceed with the script. The code is basically a huge case for a menu. This is an example of my script ... example() { echo -n "thingy…
n0t313
  • 35
  • 1
  • 4
2
votes
1 answer

Define fallback font in xterm

I use Ubuntu Mono font in xterm terminal and, to my regret, there are no glyphs for some useful unicode characters such as scissors (2702) or some superscript and subscript symbols. Fortunately, Monospace has these glyphs. Is there an opportunity to…
Evgeniy
  • 756
  • 8
  • 17
2
votes
1 answer

"ruby script.rb" versus "xterm -e ruby script.rb"

I've run into a strange problem with Ruby that I can't explain. I have the following script that grabs whatever code is currently in the clipboard, runs it through a syntax highlighter, then puts the new version BACK into the…
Matthew
  • 685
  • 8
  • 18
2
votes
3 answers

how to stop underscores from disappearing in xterm in xvnc4 window in Xubuntu 16.04?

In an xterm running in an xvnc4 session in Xubuntu 16.04, i.e., Ubuntu 16.04 with XFCE, underscore characters disappear. This problem does not appear in Xubuntu 14.04. My question is: how to avoid this? If there's an underscore, I need it to be…
2
votes
1 answer

How to use ec2 instance as personal dev box using intellij as IDE?

I have searched the questions and have not found an answer to this one: I am developing an existing project (git repo) that runs only on Linux. For the time being I have at my disposal only a windows laptop which I cannot modify. This laptop has…
Ben Weaver
  • 960
  • 1
  • 8
  • 18
2
votes
3 answers

Hiding Cursor in Xterm Tektronix 4014 Mode

I wrote the following program to test the Xterm Tektronix 4014 mode: #define _BSD_SOURCE #include #include #include #define GS ((char)0x1D) #define ESC ((char)0x1B) #define FF ((char)0x0C) static void xy (int x, …
schoppenhauer
  • 411
  • 3
  • 11
2
votes
1 answer

How do you read the arrow keys?

Extensive searching on the use of raw mode with termios and xterm leads to numerous references to a "timing trick" required to distinguish between an escape-sequence and a lone appearance of the escape character. So how do you do it? I don't want to…
luser droog
  • 18,988
  • 3
  • 53
  • 105
2
votes
1 answer

Unicode and 256 colors in Raspberry Pi Terminal Environment

I'm working with a bunch of Raspberry Pi 2s running Raspbian, building interactive puzzles for a performance installation. The puzzles are meant to be played on the command line. My background is in web development, so while I'm very comfortable on…
Ben
  • 571
  • 2
  • 4
  • 15
2
votes
2 answers

AwesomeWM urxvt paste clipboard via keyboard

I know things similar to this have been asked many times. I've recently made the switch from Gnome to Awesome. My current terminal is urxvt. Using the copy buffer is fine, I know I can insert into the terminal from this using [CTRL]+[Ins] (or…
Alasdair
  • 566
  • 1
  • 4
  • 16
2
votes
1 answer

How to remove the color code in golang ssh client

I am using golang ssh package to build a ssh client, I set the terminal modes as below // Set up terminal modes modes := ssh.TerminalModes{ ssh.ECHO: 0, // disable echoing ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud …
ddaddca
  • 69
  • 3
2
votes
1 answer

Display unicode font in Xquartz xterm

For some reason I can't get unicode fonts to work inside of xterm when I start it from the xquartz applications tab as shown below: I have tried setting the command to xterm -u8 but the fonts are still missing. However if I create a new xterm…
Craig
  • 901
  • 7
  • 18
2
votes
2 answers

Unicode character bug upon exiting tmux with alternate screen overridden

I've removed and added a few times now the following line to ~/.tmux.conf: set -ga terminal-overrides ',xterm*:smcup@:rmcup@' Which according to the person who provided it does the following: to fool the multiplexers into thinking that the…
Louis Maddox
  • 5,226
  • 5
  • 36
  • 66
2
votes
1 answer

Escape sequence to set cursor hollow?

I'm using xterm. If the xterm window loses the focus the text cursor becomes hollow. I want to use a hollow cursor as cursor form when vim switches from insert into normal mode. Therefore I need the escape sequence to change the cursor from block…
mutetella
  • 192
  • 1
  • 8
2
votes
2 answers

yet another unknown terminal type

From Ubuntu, I open gnome-terminal, and ssh to a OS X. OS X version is: $ sw_vers ProductName: Mac OS X ProductVersion: 10.9.5 BuildVersion: 13F34 I have for example the file xterm-256color: $ ls…
user744629
  • 1,961
  • 1
  • 18
  • 27