Advertisement
Guest User

xorg.conf

a guest
Oct 14th, 2012
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.21 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     Screen      1  "Screen1" RightOf "Screen0"
  5.     InputDevice    "Mouse0" "CorePointer"
  6.     InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Files"
  10.     ModulePath   "/usr/lib/xorg/modules"
  11.     FontPath     "/usr/share/fonts/misc/"
  12.     FontPath     "/usr/share/fonts/TTF/"
  13.     FontPath     "/usr/share/fonts/OTF/"
  14.     FontPath     "/usr/share/fonts/Type1/"
  15.     FontPath     "/usr/share/fonts/100dpi/"
  16.     FontPath     "/usr/share/fonts/75dpi/"
  17. EndSection
  18.  
  19. Section "Module"
  20.     Load  "glx"
  21. EndSection
  22.  
  23. Section "InputDevice"
  24.     Identifier  "Keyboard0"
  25.     Driver      "kbd"
  26. EndSection
  27.  
  28. Section "InputDevice"
  29.     Identifier  "Mouse0"
  30.     Driver      "mouse"
  31.     Option      "Protocol" "auto"
  32.     Option      "Device" "/dev/input/mice"
  33.     Option      "ZAxisMapping" "4 5 6 7"
  34. EndSection
  35.  
  36. Section "Monitor"
  37.     Identifier   "Monitor0"
  38.     VendorName   "Monitor Vendor"
  39.     ModelName    "Monitor Model"
  40. EndSection
  41.  
  42. Section "Monitor"
  43.     Identifier   "Monitor1"
  44.     VendorName   "Monitor Vendor"
  45.     ModelName    "Monitor Model"
  46. EndSection
  47.  
  48. #Section "ServerFlags"
  49. #   Option "IgnoreABI" "True"
  50.  
  51. Section "Device"
  52.         ### Available Driver options are:-
  53.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  54.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  55.         ### <percent>: "<f>%"
  56.         ### [arg]: arg optional
  57.         #Option     "ShadowFB"              # [<bool>]
  58.         #Option     "Rotate"                # <str>
  59.         #Option     "fbdev"                 # <str>
  60.         #Option     "debug"                 # [<bool>]
  61.     Identifier  "Card0"
  62.     Driver      "sisimedia"
  63.     BusID       "PCI:1:0:0"
  64. EndSection
  65.  
  66. Section "Device"
  67.         ### Available Driver options are:-
  68.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  69.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  70.         ### <percent>: "<f>%"
  71.         ### [arg]: arg optional
  72.         #Option     "ShadowFB"              # [<bool>]
  73.         #Option     "DefaultRefresh"        # [<bool>]
  74.         #Option     "ModeSetClearScreen"    # [<bool>]
  75.     Identifier  "Card1"
  76.     Driver      "vesa"
  77.     BusID       "PCI:1:0:0"
  78. EndSection
  79.  
  80. Section "Screen"
  81.     Identifier "Screen0"
  82.     Device     "Card0"
  83.     Monitor    "Monitor0"
  84.     SubSection "Display"
  85.         Viewport   0 0
  86.         Depth     1
  87.     EndSubSection
  88.     SubSection "Display"
  89.         Viewport   0 0
  90.         Depth     4
  91.     EndSubSection
  92.     SubSection "Display"
  93.         Viewport   0 0
  94.         Depth     8
  95.     EndSubSection
  96.     SubSection "Display"
  97.         Viewport   0 0
  98.         Depth     15
  99.     EndSubSection
  100.     SubSection "Display"
  101.         Viewport   0 0
  102.         Depth     16
  103.     EndSubSection
  104.     SubSection "Display"
  105.         Viewport   0 0
  106.         Depth     24
  107.     EndSubSection
  108. EndSection
  109.  
  110. Section "Screen"
  111.     Identifier "Screen1"
  112.     Device     "Card1"
  113.     Monitor    "Monitor1"
  114.     SubSection "Display"
  115.         Viewport   0 0
  116.         Depth     1
  117.     EndSubSection
  118.     SubSection "Display"
  119.         Viewport   0 0
  120.         Depth     4
  121.     EndSubSection
  122.     SubSection "Display"
  123.         Viewport   0 0
  124.         Depth     8
  125.     EndSubSection
  126.     SubSection "Display"
  127.         Viewport   0 0
  128.         Depth     15
  129.     EndSubSection
  130.     SubSection "Display"
  131.         Viewport   0 0
  132.         Depth     16
  133.     EndSubSection
  134.     SubSection "Display"
  135.         Viewport   0 0
  136.         Depth     24
  137.     EndSubSection
  138. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement