Quote:
Originally Posted by GazL
slackware-current's xterm uses bitmapped fonts by default.
|
Ok, thanks for your answers folks!
I just copied my Xresources from slackware stable 14.2, where it seems to work fine, I doesn't usually use xterm, so maybe I don't well remember.
Anyway, I've copied a Xresource that apply the "Solarized" color scheme.
It was generic not specific for for xterm:
Code:
*background: S_base03
*foreground: S_base0
*fading: 40
I attached it after latest touches, it seems working now: solarized theme, and faceName regularly defined to Hack font.
It works only if ".vt100." "class" is specified:
The following aren't working
Code:
XTerm*renderFont: true
XTerm*faceName: xft:DejaVu Sans Mono:style=Book
XTerm*faceSize: 16
Instead here below a config that works fine
Code:
XTerm.vt100.renderFont: true
XTerm.vt100.faceName: Hack:style=Regular
XTerm.vt100.faceSize: 18
Why "vt100" specification does the trick?
Are the Xresources "generic" (XTerm*fooBar: value) settings are overwritten by the vt100 specific of global XTerm default in /etc/X11 ?
Code:
$ sed -n '/^XTerm.vt100/p' /etc/X11/app-defaults/XTerm
XTerm.vt100.metaSendsEscape: true
XTerm.vt100.bellIsUrgent: true
XTerm.vt100.renderFont: false
XTerm.vt100.font: -*-terminus-medium-r-normal-*-20-*-*-*-*-*-iso10646-1
XTerm.vt100.font1: -*-terminus-medium-r-normal-*-12-*-*-*-*-*-iso10646-1
XTerm.vt100.font2: -*-terminus-medium-r-normal-*-14-*-*-*-*-*-iso10646-1
XTerm.vt100.font3: -*-terminus-medium-r-normal-*-16-*-*-*-*-*-iso10646-1
XTerm.vt100.font4: -*-terminus-medium-r-normal-*-20-*-*-*-*-*-iso10646-1
XTerm.vt100.font5: -*-terminus-medium-r-normal-*-24-*-*-*-*-*-iso10646-1
XTerm.vt100.font6: -*-terminus-medium-r-normal-*-32-*-*-*-*-*-iso10646-1
XTerm.vt100.faceName: monospace
XTerm.vt100.faceSize: 14.0
Shouldn't be the opposite?