_ [BSD][X11][Fonts] X11でのFontの設定(4) -Xftの設定-
Xft
に限らず比較的古くからあるコマンドについては設定を
xrdb
で行う。
xrdb
はx11を入れればinstallされているとも思われるが、もし入っていない場合は
x11/xrdb
からinstallできる。通常は
$HOME/.Xresources
に設定を書いて
% xrdb -merge .Xresources
とすればいい。今回は
Xft
の設定については
!! Xft
Xft.autohint: 0
Xft.lcdfilter: lcddefault
Xft.hintstyle: hintslight
Xft.hinting: 1
Xft.dpi: 96
Xft.antialias: 1
Xft.rgba: rgb
とした。
.Xresources
では
!
を入れればコメントアウトされる。この中で
Xft.dpi
についてはディスプレイなどにより値が異なるので
x11/xdpyinfo
を用いて確認を行う必要がある。
% xdpyinfo| grep dots
resolution: 96x96 dots per inch
% xdpyinfo
name of display: localhost:10.0
version number: 11.0
vendor string: The X.Org Foundation
vendor release number: 11704000
X.Org version: 1.17.4
maximum request size: 16777212 bytes
motion buffer size: 256
bitmap unit, bit order, padding: 32, LSBFirst, 32
image byte order: LSBFirst
number of supported pixmap formats: 7
supported pixmap formats:
depth 1, bits_per_pixel 1, scanline_pad 32
depth 4, bits_per_pixel 8, scanline_pad 32
depth 8, bits_per_pixel 8, scanline_pad 32
depth 15, bits_per_pixel 16, scanline_pad 32
depth 16, bits_per_pixel 16, scanline_pad 32
depth 24, bits_per_pixel 32, scanline_pad 32
depth 32, bits_per_pixel 32, scanline_pad 32
keycode range: minimum 8, maximum 255
focus: PointerRoot
number of extensions: 24
Apple-DRI
Apple-WM
BIG-REQUESTS
DAMAGE
DOUBLE-BUFFER
GLX
Generic Event Extension
MIT-SCREEN-SAVER
MIT-SHM
Present
RANDR
RENDER
SECURITY
SGI-GLX
SHAPE
SYNC
X-Resource
XC-MISC
XFIXES
XINERAMA
XINERAMA
XInputExtension
XKEYBOARD
XVideo
default screen number: 0
number of screens: 1
screen #0:
dimensions: 1280x778 pixels (339x206 millimeters)
resolution: 96x96 dots per inch
depths (7): 24, 1, 4, 8, 15, 16, 32
root window id: 0x111
depth of root window: 24 planes
number of colormaps: minimum 1, maximum 1
default colormap: 0x21
default number of colormap cells: 256
preallocated pixels: black 0, white 16777215
options: backing-store NO, save-unders NO
largest cursor: 32x32
current input event mask: 0x1a0000
StructureNotifyMask SubstructureNotifyMask SubstructureRedirectMask
number of visuals: 80
default visual id: 0x22
visual:
visual id: 0x22
class: TrueColor
depth: 24 planes
available colormap entries: 256 per subfield
red, green, blue masks: 0xff0000, 0xff00, 0xff
significant bits in color specification: 8 bits
visual:
~
~
~
_ [BSD][Fonts][X11] X11でのFontの設定(5) -XTermの設定-
xterm
で日本語ができないと思い込んでいる人がいそうだけど、今ではutf-8にも対応していて軽いterminalとして使い勝手は悪くないと感じる。
xterm
にはpreferenceのようなものはなく
Xft
と同じように
.Xresources
で行う。
とりあえずshellの環境変数を
export LANG='ja_JP.UTF-8'
export LC_ALL='ja_JP.UTF-8'
export LC_MESSAGES='ja_JP.UTF-8'
としておいて
.Xresources
には
!! Xterm Resources
! UTF-8
XTerm*locale: true
XTerm*utf8: 1
XTerm*utf8Title: true
XTerm*eightBitInput: false
XTerm*eightBitOutput: true
XTerm*forcePackedFont: false
!XTerm*font: -*-fixed-*-*-*-*-10-*-*-*-*-*-*-*
XTerm*faceName: Ricty
!XTerm*faceName: DejaVu Sans Mono
XTerm*faceNameDoublesize: Ricty
!XTerm*faceNameDoubleSize: DejaVu Sans Mono
XTerm*faceSize: 10
XTerm*cjkWidth: true
XTerm*selectToClipboard: true
XTerm*saveLines: 4096
XTerm*vt100*geometry: 80x40
XTerm*ScrollBar: on
!XTerm*rightScroll: true
XTerm*multiScroll: on
XTerm*jumpScroll: on
と書いている。bitmap fontを使う時には
XTerm*font
の設定をするが、scalable fontを使う時には
XTerm*faceName
で設定する。この時の名前については
fc-list
というコマンドで出てくる出力を参考にすれば良い。
.Xresourceを編集した後は
% xrdb -merge .Xresources
を忘れないように。