2

So small!!!!

Why are the characters in xterm so small and how do I change it?

1 Answers1

2

You have no configuration defined for xterm. Create a configuration:

nano ~/.Xresources

and add these lines

xterm*faceName: Ubuntu Mono:style=Regular:antialias=true
xterm*faceSize: 12
XTerm*Background: black
XTerm*Foreground: grey

and run this command:

xrdb -I$HOME ~/.Xresources

Read more

A.B.
  • 90,397