Мар 182011
После уставноки иксов в FreeBSD , мне не понравились стандартные шриты.
Сразу вспомнил, что Gentoo Linux ятоже доустонавливал красивые шрифты.
cd /usr/ports/x11-fonts/bitstream-vera && make install clean cd /usr/ports/x11-fonts/cyr-rfx && make install clean cd /usr/ports/x11-fonts/liberation-fonts-ttf/ && make install clean cd /usr/ports/x11-fonts/urwfonts-ttf && make install clean cd /usr/ports/x11-fonts/webfonts && make install clean cd /usr/ports/x11-fonts/urwfonts && make install clean cd /usr/ports/x11-fonts/dejavu && make install clean
При уставноки щрифтов webfonts система попросит добавить модуль в текстовый фаел xorg.conf в секцию Section «Module».
Load "freetype"
Записи о наших шрифтах добовляем в /etc/X11/xorg.conf в секцию Section «Files» .
cat /etc/X11/xorg.conf | grep Path
ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/cyr-rfx-koi8-o/" FontPath "/usr/local/lib/X11/fonts/webfonts/" FontPath "/usr/local/lib/X11/fonts/urwfonts-ttf" FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" FontPath "/usr/local/lib/X11/fonts/URW" FontPath "/usr/local/lib/X11/fonts/cyrillic/" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/Liberation/" FontPath "/usr/local/lib/X11/fonts/dejavu/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/"
Вот и все.
Добавил в свой xorg.conf Замечательно. Спасибо.