How to make terminal emulators usable on a HiRes screen

resolutionterminal-emulator

On Debian Stretch with a 3200×1800 screen, using Cinnamon desktop, the interface size is on a nice scale.

However, I was used to work with xterm as a terminal. The problem: the window appears ridiculously small on my screen. Same thing with rxvt.

So now, I use gnome-terminal which works pretty well, but I don't like it that much.

How can I make terminal emulators usable on a high resolution screen?

Best Answer

For xterm, load these resources into your X server (some desktop environments do that automatically from the ~/.Xresources file upon login) so it applies to all applications of class XTerm connecting to it from any machine:

XTerm.VT100.faceName: DejaVu Sans Mono
XTerm.VT100.faceSize: 20
XTerm.SimpleMenu*font: -adobe-helvetica-bold-r-normal--24-120-*-*-*-*-iso8859-*
XTerm.SimpleMenu.menuLabel.font: -adobe-helvetica-bold-r-normal--34-120-*-*-*-*-iso8859-*

Adjust to taste.

Related Question