Advertisement
Guest User

xorg

a guest
Mar 19th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen      0  "Screen0" 0 0
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath   "/usr/lib/xorg/modules"
  10.     FontPath     "/usr/share/fonts/X11/misc"
  11.     FontPath     "/usr/share/fonts/X11/cyrillic"
  12.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  13.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  14.     FontPath     "/usr/share/fonts/X11/Type1"
  15.     FontPath     "/usr/share/fonts/X11/100dpi"
  16.     FontPath     "/usr/share/fonts/X11/75dpi"
  17.     FontPath     "built-ins"
  18. EndSection
  19.  
  20. Section "Module"
  21.     Load  "glx"
  22. EndSection
  23.  
  24. Section "InputDevice"
  25.     Identifier  "Keyboard0"
  26.     Driver      "kbd"
  27. EndSection
  28.  
  29. Section "InputDevice"
  30.     Identifier  "Mouse0"
  31.     Driver      "mouse"
  32.     Option      "Protocol" "auto"
  33.     Option      "Device" "/dev/input/mice"
  34.     Option      "ZAxisMapping" "4 5 6 7"
  35. EndSection
  36.  
  37. Section "Monitor"
  38.     Identifier  "Monitor0"
  39.     VendorName  "Monitor Vendor"
  40.     ModelName   "Monitor Model"
  41.     Modeline "1920x1080_60"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
  42.     Option      "PreferredMode" "1920x1080_60"
  43.     Option      "Enable"  "true"
  44.     Option      "Primary" "True"
  45. EndSection
  46.  
  47. Section "Device"
  48.     Identifier  "Card0"
  49.     Driver      "vboxvideo"
  50.     BusID       "PCI:0:2:0"
  51. EndSection
  52.  
  53. Section "Screen"
  54.     Identifier "Screen0"
  55.     Device     "Card0"
  56.     Monitor    "Monitor0"
  57.     DefaultDepth 16
  58.     SubSection  "Display"
  59.         Modes "1920x1080_60" "1680x1050"
  60.     EndSubSection
  61. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement