# HG changeset patch # User Oleksandr Gavenko # Date 1338466694 -10800 # Node ID 539d60ac4453f323870f95e8005c8a6e2f614709 # Parent b4a68afc6357ea9e0de758d750bbf395d420bab2 Convert syntax to RST format. diff -r b4a68afc6357 -r 539d60ac4453 djvu.rst --- a/djvu.rst Fri May 25 14:46:16 2012 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,75 +0,0 @@ --*- mode:outline; coding: utf-8 -*- - -* About djvu. - - http://djvu.org/links/ - many useful links - -* Viewer. - - * DjVuLibre (all OS). - * WinDjvu (Windows). - -* Editor. - - * DjVuLibre (all OS). - * DjVu Solo (Windows). - -* DjVuLibre. - - * A full set of utilities to manipulate and assemble DjVu images and - documents. - * A set of decoders to convert DjVu to a number of other formats. - * A standalone DjVu viewer for Unix under X11 (based on the Qt library). - * A browser plugin that works with most Unix browsers - - http://djvu.sourceforge.net/ - -* DjVu Solo. - -Tool for editing and merge files and documents in DjVu format from LizardTech. -Currently not maintained. - - http://www.djvu.org/resources/ - -* djvu to pdf. - -** djvulibre. - - $ ddjvu -format=tiff book.djvu book.tiff - $ tiff2pdf -o book.pdf book.tiff - -* pdf to djvu. - -** djvulibre. - -For 'pdftoppm' install xpdf (both Linux and Cygwin). - - $ pdftoppm -mono -r 600 -aa yes $PDF $PDF - $ for PBM in $PDF*.pbm; do cjb2 -dpi $DPI $PBM $PBM.djvu; rm -f $PBM; done - - $ djvm -c $OUTFILE $MASK*.pbm.djvu - -** pdf2djvu. - - $ pdf2djvu file.pdf - - http://code.google.com/p/pdf2djvu/ - home page - -* jpg to djvu. - -** JPEG to bitonal DjVu. - - $ anytopnm page.djvu | ppmtopgm | pgmtopbm -value 0.499 > page.pbm - $ cjb2 -dpi $DPI page.pbm page.djvu - - $ djvm -c $OUTFILE $MASK.djvu # Many .djvu to single .djvu. - - -** JPEG to low colour DjVu. - - $ cpaldjvu -dpi $DPI -colors $NCOLORS $i $i.djvu - - $ djvm -c $OUTFILE $MASK.djvu # Many .djvu to single .djvu. - diff -r b4a68afc6357 -r 539d60ac4453 xorg.rst --- a/xorg.rst Fri May 25 14:46:16 2012 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,84 +0,0 @@ --*- mode: outline -*- - -* Where find info? - - $ man 5 xorg.cong - -* Enable Ctrl+Alt+Backspace. - - $ cat /etc/X11/xorg.conf -... -Section "ServerFlags" - Option "DontZap" "false" -EndSection - -* How set standby time? - -Put something like this in xorg.cong: - - Section "ServerFlags" - # Disallows the use of the Ctrl+Alt+Keypad-Plus and Ctrl+Alt+Keypad-Minus. - Option "DontZoom" "true" - # Blank phase of the screensaver. - #Option "BlankTime" "0" - # Standby phase of DPMS mode. - Option "StandbyTime" "10" - # - #Option "SuspendTime" "0" - # - #Option "OffTime" "0" - EndSection - -Time measure in minute. - -To enable this configuration you must set "DPMS" option in "Monitor" section: - - Section "Monitor" -... - Option "DPMS" -... - EndSection - -To disable standby for current session use command: - - $ xset -dpms - -To turn off monitor use: - - $ xset dpms force off - -* Set display dimensions. - -To see currect settings type: - - $ xdpyinfo | grep dimensions: -dimensions: 1280x1024 pixels (382x302 millimeters) - -From this dimensions calculated your display dpi resolution: - - $ xdpyinfo | grep resolution: -resolution: 85x86 dots per inch - -To set dimensions edit '/etc/X11/xorg.conf' (size in mm): - - $ cat /etc/X11/xorg.conf -... -Section "Monitor" -... - 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 -