daily pastebin goal
58%
SHARE
TWEET

duck

a guest Mar 6th, 2012 16 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # in /etc/X11/xorg.conf.
  2.  
  3. XKBMODEL="pc105"
  4. XKBLAYOUT="de"
  5. XKBVARIANT="nodeadkeys"
  6. XKBOPTIONS=""
  7.  
  8. # If you don't want to use the XKB layout on the console, you can
  9. # specify an alternative keymap.  Make sure it will be accessible
  10. # before /usr is mounted.
  11. # KMAP=/etc/console-setup/defkeymap.kmap.gz
  12.  
  13. root@hellboy:/home/linda# cat /etc/X11/xorg.conf
  14. Section "ServerLayout"
  15.      Identifier     "X.org Configured"
  16.      Screen      0  "Screen0" 0 0
  17.      Screen      1  "Screen1" RightOf "Screen0"
  18.      Screen      2  "Screen2" RightOf "Screen1"
  19.      InputDevice    "Mouse0" "CorePointer"
  20.      InputDevice    "Keyboard0" "CoreKeyboard"
  21. EndSection
  22.  
  23. Section "Files"
  24.      ModulePath   "/usr/lib/xorg/modules"
  25.      FontPath     "/usr/share/fonts/X11/misc"
  26.      FontPath     "/usr/share/fonts/X11/cyrillic"
  27.      FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  28.      FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  29.      FontPath     "/usr/share/fonts/X11/Type1"
  30.      FontPath     "/usr/share/fonts/X11/100dpi"
  31.      FontPath     "/usr/share/fonts/X11/75dpi"
  32.      FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  33.      FontPath     "built-ins"
  34. EndSection
  35.  
  36. Section "Module"
  37.      Load  "extmod"
  38.      Load  "glx"
  39.      Load  "dri"
  40.      Load  "dbe"
  41.      Load  "dri2"
  42.      Load  "record"
  43. EndSection
  44.  
  45. Section "InputDevice"
  46.      Identifier  "Keyboard0"
  47.      Driver      "kbd"
  48.      Option "XkbModel" "pc105"
  49.      Option "XkbLayout" "de"
  50.      Option "XkbVariant" "nodeadkeys"
  51. EndSection
  52.  
  53. Section "InputDevice"
  54.      Identifier  "Mouse0"
  55.      Driver      "mouse"
  56.      Option        "Protocol" "auto"
  57.      Option        "Device" "/dev/input/mice"
  58.      Option        "ZAxisMapping" "4 5 6 7"
  59. EndSection
  60.  
  61. Section "Monitor"
  62.      Identifier   "Monitor0"
  63.      VendorName   "Monitor Vendor"
  64.      ModelName    "Monitor Model"
  65. EndSection
  66.  
  67. Section "Monitor"
  68.      Identifier   "Monitor1"
  69.      VendorName   "Monitor Vendor"
  70.      ModelName    "Monitor Model"
  71. EndSection
  72.  
  73. Section "Monitor"
  74.      Identifier   "Monitor2"
  75.      VendorName   "Monitor Vendor"
  76.      ModelName    "Monitor Model"
  77. EndSection
  78.  
  79. Section "Device"
  80.          ### Available Driver options are:-
  81.          ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  82.          ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  83.          ### <percent>: "<f>%"
  84.          ### [arg]: arg optional
  85.          #Option     "DRI"                    # [<bool>]
  86.          #Option     "ColorKey"               # <i>
  87.          #Option     "VideoKey"               # <i>
  88.          #Option     "FallbackDebug"          # [<bool>]
  89.          #Option     "Tiling"                 # [<bool>]
  90.          #Option     "LinearFramebuffer"      # [<bool>]
  91.          #Option     "Shadow"                 # [<bool>]
  92.          #Option     "SwapbuffersWait"        # [<bool>]
  93.          #Option     "TripleBuffer"           # [<bool>]
  94.          #Option     "XvMC"                   # [<bool>]
  95.          #Option     "XvPreferOverlay"        # [<bool>]
  96.          #Option     "DebugFlushBatches"      # [<bool>]
  97.          #Option     "DebugFlushCaches"       # [<bool>]
  98.          #Option     "DebugWait"              # [<bool>]
  99.          #Option     "HotPlug"                # [<bool>]
  100.          #Option     "RelaxedFencing"         # [<bool>]
  101.      Identifier  "Card0"
  102.      Driver      "intel"
  103.      BusID       "PCI:0:2:0"
  104. EndSection
  105.  
  106. Section "Device"
  107.          ### Available Driver options are:-
  108.          ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  109.          ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  110.          ### <percent>: "<f>%"
  111.          ### [arg]: arg optional
  112.          #Option     "ShadowFB"               # [<bool>]
  113.          #Option     "Rotate"                 # <str>
  114.          #Option     "fbdev"                  # <str>
  115.          #Option     "debug"                  # [<bool>]
  116.      Identifier  "Card1"
  117.      Driver      "fbdev"
  118.      BusID       "PCI:0:2:0"
  119. EndSection
  120.  
  121. Section "Device"
  122.          ### Available Driver options are:-
  123.          ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  124.          ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  125.          ### <percent>: "<f>%"
  126.          ### [arg]: arg optional
  127.          #Option     "ShadowFB"               # [<bool>]
  128.          #Option     "DefaultRefresh"         # [<bool>]
  129.          #Option     "ModeSetClearScreen"     # [<bool>]
  130.      Identifier  "Card2"
  131.      Driver      "vesa"
  132.      BusID       "PCI:0:2:0"
  133. EndSection
  134.  
  135. Section "Screen"
  136.      Identifier "Screen0"
  137.      Device     "Card0"
  138.      Monitor    "Monitor0"
  139.      SubSection "Display"
  140.          Viewport   0 0
  141.          Depth     1
  142.      EndSubSection
  143.      SubSection "Display"
  144.          Viewport   0 0
  145.          Depth     4
  146.      EndSubSection
  147.      SubSection "Display"
  148.          Viewport   0 0
  149.          Depth     8
  150.      EndSubSection
  151.      SubSection "Display"
  152.          Viewport   0 0
  153.          Depth     15
  154.      EndSubSection
  155.      SubSection "Display"
  156.          Viewport   0 0
  157.          Depth     16
  158.      EndSubSection
  159.      SubSection "Display"
  160.          Viewport   0 0
  161.          Depth     24
  162.      EndSubSection
  163. EndSection
  164.  
  165. Section "Screen"
  166.      Identifier "Screen1"
  167.      Device     "Card1"
  168.      Monitor    "Monitor1"
  169.      SubSection "Display"
  170.          Viewport   0 0
  171.          Depth     1
  172.      EndSubSection
  173.      SubSection "Display"
  174.          Viewport   0 0
  175.          Depth     4
  176.      EndSubSection
  177.      SubSection "Display"
  178.          Viewport   0 0
  179.          Depth     8
  180.      EndSubSection
  181.      SubSection "Display"
  182.          Viewport   0 0
  183.          Depth     15
  184.      EndSubSection
  185.      SubSection "Display"
  186.          Viewport   0 0
  187.          Depth     16
  188.      EndSubSection
  189.      SubSection "Display"
  190.          Viewport   0 0
  191.          Depth     24
  192.      EndSubSection
  193. EndSection
  194.  
  195. Section "Screen"
  196.      Identifier "Screen2"
  197.      Device     "Card2"
  198.      Monitor    "Monitor2"
  199.      SubSection "Display"
  200.          Viewport   0 0
  201.          Depth     1
  202.      EndSubSection
  203.      SubSection "Display"
  204.          Viewport   0 0
  205.          Depth     4
  206.      EndSubSection
  207.      SubSection "Display"
  208.          Viewport   0 0
  209.          Depth     8
  210.      EndSubSection
  211.      SubSection "Display"
  212.          Viewport   0 0
  213.          Depth     15
  214.      EndSubSection
  215.      SubSection "Display"
  216.          Viewport   0 0
  217.          Depth     16
  218.      EndSubSection
  219.      SubSection "Display"
  220.          Viewport   0 0
  221.          Depth     24
  222.      EndSubSection
  223. EndSection
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top