Why are the characters in xterm so small and how do I change it?
Asked
Active
Viewed 568 times
1 Answers
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

A.B.
- 90,397
XTerm*Background: black
andXTerm*Foreground: grey
– A.B. May 08 '15 at 18:10