Advertisement
Guest User

xorg.conf

a guest
Sep 4th, 2015
718
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.60 KB | None | 0 0
  1. # bare-bones XFree86 config to start the server in probe-only mode
  2. Section "Files"
  3.     FontPath    "/usr/share/X11/fonts/misc"
  4.     RgbPath     "/etc/X11/rgb.txt"
  5. EndSection
  6. Section "ServerFlags"
  7.     Option "AllowMouseOpenFail"
  8. EndSection
  9. Section "Module"
  10.     Load    "bitmap"
  11.     Load    "dbe"
  12.     Load    "ddc"
  13.     Load    "extmod"
  14.     Load    "freetype"
  15.     Load    "int10"
  16.     Load    "record"
  17.     Load    "vbe"
  18. EndSection
  19. Section "InputDevice"
  20.     Identifier  "Generic Keyboard"
  21.     Driver      "keyboard"
  22.     Option      "CoreKeyboard"
  23.     Option      "XkbRules"  "xorg"
  24.     Option      "XkbModel"  "pc104"
  25.     Option      "XkbLayout" "us"
  26. EndSection
  27. Section "InputDevice"
  28.     Identifier  "Generic Mouse"
  29.     Driver      "mouse"
  30.     Option      "CorePointer"
  31.     Option      "Device"        "/dev/input/mice"
  32.     Option      "Protocol"      "ImPS/2"
  33. EndSection
  34. Section "Device"
  35.     Identifier  "Generic Device"
  36.     Driver      "::DRIVER::"
  37. EndSection
  38. Section "Monitor"
  39.     Identifier  "Generic Monitor"
  40.     Option      "DPMS"
  41. EndSection
  42. Section "Screen"
  43.     Identifier  "Default Screen"
  44.     Device      "Generic Device"
  45.     Monitor     "Generic Monitor"
  46.     DefaultDepth    24
  47.     SubSection "Display"
  48.         Depth       1
  49.         Modes       "1024x768"
  50.     EndSubSection
  51.     SubSection "Display"
  52.         Depth       4
  53.         Modes       "1024x768"
  54.     EndSubSection
  55.     SubSection "Display"
  56.         Depth       8
  57.         Modes       "1024x768"
  58.     EndSubSection
  59.     SubSection "Display"
  60.         Depth       15
  61.         Modes       "1024x768"
  62.     EndSubSection
  63.     SubSection "Display"
  64.         Depth       16
  65.         Modes       "1024x768"
  66.     EndSubSection
  67.     SubSection "Display"
  68.         Depth       24
  69.         Modes       "1024x768"
  70.     EndSubSection
  71. EndSection
  72. Section "ServerLayout"
  73.     Identifier  "Default Layout"
  74.     Screen      "Default Screen"
  75.     InputDevice "Generic Keyboard"
  76.     InputDevice "Generic Mouse"
  77. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement