
Code: Select all
xterm -font "*bitstream vera sans mono*medium-r*"
Code: Select all
xterm -bg black -fg LavenderBlush4 -fn '-lfp-bright-*-*-*-*-*-*-*-*-*-*-iso8859-15'Code: Select all
XTerm*font: -lfp-bright-*-*-*-*-*-*-*-*-*-*-iso8859-15
XTerm*background: black
XTerm*foreground: white

Code: Select all
xterm -font "*bitstream vera sans mono*medium-r*"

Code: Select all
$ cat $(locate fonts.alias) | lessCode: Select all
$ cat $(locate fonts.alias) | cut -d " " -f 1 | less

BitJam wrote:You might want to emerge xtermcontrol which is a small program that lets you modify the xterm settings from within the xterm itself. This makes adjusting things much easier and it has a more limited set of options which makes things easier too. You can adjust more than one thing at a time which makes adjusting the colors doable.
Next, in a separate window, try doing:This will give you a list of font aliases that will be easier to type in. If you want just the aliases and not the fonts they correspond to, use:Code: Select all
$ cat $(locate fonts.alias) | lessIt's not perfect but it gives you a good place to start from. As others have said xlsfonts gives a complete listing of all fonts available but this can sometimes feel overwhelming.Code: Select all
$ cat $(locate fonts.alias) | cut -d " " -f 1 | less
Code: Select all
bash: locate: comand not found
swooshOnLn wrote:Code: Select all
bash: locate: comand not found
Code: Select all
# emerge slocate
# nano /etc/updatedb.conf
# updatedbCode: Select all
# cat $(find /usr/share/fonts -name fonts.alias) | less