# HG changeset patch # User Oleksandr Gavenko # Date 1247864250 -10800 # Node ID b6fcb9e6652e72fe6251b3c77a33b1bb495b50f6 # Parent 2a14e47c75b37aae911d38551a44f0cb1595a2f7# Parent 93429aeb348e28986914719bbf4a32dd964b62b4 Automated merge with file:///srv/hg/admin-doc diff -r 2a14e47c75b3 -r b6fcb9e6652e blog.rst --- a/blog.rst Mon Jul 13 08:50:32 2009 +0300 +++ b/blog.rst Fri Jul 17 23:57:30 2009 +0300 @@ -5,3 +5,28 @@ See http://code.google.com/p/e-blog/ + +* Livejornal. + +** Feed. + +See + + http://www.livejournal.com/support/faqbrowse.bml?faqid=149 + +*** Journal Feed URLs. + + * Atom: http://NAME.livejournal.com/data/atom + * RSS: http://NAME.livejournal.com/data/rss + +*** Community Feed URLs. + + * Atom: http://community.livejournal.com/NAME/data/atom + * RSS: http://community.livejournal.com/NAME/data/rss + +*** Tagged Entries. + +View entries with a specific tag by adding ?tag=tagname to the end of the feed +URL, replacing tagname with the actual tag name. If you want to view two or +more tags at once, separate the tags with commas: ?tag=tag1,tag2. + diff -r 2a14e47c75b3 -r b6fcb9e6652e font.rst --- a/font.rst Mon Jul 13 08:50:32 2009 +0300 +++ b/font.rst Fri Jul 17 23:57:30 2009 +0300 @@ -3,6 +3,7 @@ * How see installed font for X window. $ fontsel & + $ gucharmap & * Setup font for emacs. @@ -21,6 +22,38 @@ $ xterm -fn "-misc-fixed-medium-r-*-*-18-*-*-*-*-*-iso10646-1" -geometry 120x42 -e mc -x +* Fonts family. + +See + + http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=FontsInCyberspace&_sc=1 + +** DejaVu. + +The DejaVu fonts are a font family based on the Vera Fonts. + +See + + http://dejavu-fonts.org/wiki/index.php?title=Main_Page + +*** Debian. + + $ sudo apt-get install ttf-dejavu + +** IPA. + +See + + http://scripts.sil.org/DoulosSILfont + http://scripts.sil.org/CharisSILfont + http://scripts.sil.org/Gentium + +*** Debian. + + $ sudo apt-get install ttf-sil-doulos + $ sudo apt-get install ttf-sil-charis + $ sudo apt-get install ttf-gentium + * How configure font for X? ** Debian. diff -r 2a14e47c75b3 -r b6fcb9e6652e xorg.rst --- a/xorg.rst Mon Jul 13 08:50:32 2009 +0300 +++ b/xorg.rst Fri Jul 17 23:57:30 2009 +0300 @@ -23,6 +23,14 @@ Time measure in minute. +To enable this configuration you must set "DPMS" option in "Monitor" section: + + Section "Monitor" +... + Option "DPMS" +... + EndSection + * Set display dimensions. To see currect settings type: @@ -44,3 +52,17 @@ DisplaySize width height ... EndSection + +** Overriding EDID Settings for NVidia cards. + +If you're using NVIDIA display drivers version 8756 or above and your monitor +reports an EDID DPI value, you must tell the drivers to ignore this value as +it takes precedence over all the above configuration options/arguments: + +Section "Monitor" +... + DisplaySize width height + Option "UseEdidDpi" "false" +... +EndSection +