In this case, I copy "-*-fixed-medium-*-*-*-14-*-*-*-*-*-*-*". Now open or create the /home/USER/.xresources file. Mine is pasted below, and sets green text - size medium font - on a black background. My terminal saves the previous 512 lines in the history.
!Comments start with !
xterm*background: black
xterm*foreground: green
xterm*font: -*-fixed-medium-*-*-*-14-*-*-*-*-*-*-*
xterm*saveLines: 512
See http://invisible-island.net/xterm/ for full xterm documentation.The following /home/USER/.xinitrc file checks for an xresources file, then runs xmonad. This will find your xterm customizations once you run the startx command.
if [ -f $HOME/.xresources ]; then
xrdb -merge $HOME/.xresources
fi
xmonad
No comments:
Post a Comment