Advertisement
kijato

Xorg.conf - ASUS F5GL + vesa with 1280x800

Aug 28th, 2021
3,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. Section "InputDevice"
  3.     Identifier  "Keyboard0"
  4.     Driver      "kbd"
  5. EndSection
  6.  
  7. Section "InputDevice"
  8.     Identifier  "Mouse0"
  9.     Driver      "mouse"
  10.     Option      "Protocol" "auto"
  11.     Option      "Device" "/dev/input/mice"
  12.     Option      "ZAxisMapping" "4 5 6 7"
  13. EndSection
  14.  
  15. Section "Monitor"
  16.     Identifier   "Monitor0"
  17.     VendorName   "Monitor Vendor"
  18.     ModelName    "Monitor Model"
  19.     # Xorg.0.log
  20.     # [ 10170.045] (II) VESA(0): Monitor0: Using hsync range of 31.50-48.00 kHz
  21.     # [ 10170.045] (II) VESA(0): Monitor0: Using vrefresh range of 50.00-70.00 Hz
  22.     HorizSync    31.50-48.00
  23.     VertRefresh  50.00-70.00
  24.     # cvt 1280 800 60
  25.     Modeline "1280x800_60.00"   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync
  26. EndSection
  27.  
  28. Section "Device"
  29.     Identifier  "Card0"
  30.     BusID       "PCI:2:0:0"
  31.     Driver      "vesa"
  32.     # Driver      "modesetting"
  33.     # Driver      "nvidia"
  34.     # Driver      "nouveau"
  35. EndSection
  36.  
  37. Section "Screen"
  38.     Identifier "Screen0"
  39.     Device     "Card0"
  40.     Monitor    "Monitor0"
  41.     SubSection "Display"
  42.         Depth     24
  43.     EndSubSection
  44. EndSection
  45.  
  46. Section "ServerLayout"
  47.     Identifier     "X.org Configured"
  48.     Screen      0  "Screen0" 0 0
  49.     InputDevice    "Mouse0" "CorePointer"
  50.     InputDevice    "Keyboard0" "CoreKeyboard"
  51. EndSection
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement