Advertisement
Guest User

Untitled

a guest
Sep 29th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ### XORG.CONF
  2. Section "ServerLayout"
  3.         Identifier     "X.org Configured"
  4.         Screen      0  "Screen0" 0 0
  5.         InputDevice    "Mouse0" "CorePointer"
  6.         InputDevice    "Keyboard0" "CoreKeyboard"
  7. EndSection
  8.  
  9. Section "Extensions"
  10.   Option "Composite" "Enable"
  11. EndSection
  12.  
  13. Section "Modes"
  14.         Identifier "Samsung modes"
  15.         Modeline "1360x768" 85.500 1360 1424 1536 1792 768 771 777 795 +Hsync +Vsync
  16.         ModeLine        "testgreg" 148.500 1920 2008 2052 2200 1080 1084 1089 1125
  17. EndSection
  18.  
  19. Section "Files"
  20.         ModulePath   "/usr/lib/X11/modules"
  21.         FontPath     "/usr/share/fonts/X11/misc/"
  22.         FontPath     "/usr/share/fonts/X11/TTF/"
  23.         FontPath     "/usr/share/fonts/X11/OTF"
  24.         FontPath     "/usr/share/fonts/X11/Type1/"
  25.         FontPath     "/usr/share/fonts/X11/100dpi/"
  26.         FontPath     "/usr/share/fonts/X11/75dpi/"
  27. EndSection
  28.  
  29. Section "Module"
  30.         Load  "glx"
  31.         Load  "extmod"
  32.         Load  "dri"
  33.         Load  "dbe"
  34.         Load  "freetype"
  35. EndSection
  36.  
  37. Section "InputDevice"
  38.         Identifier  "Keyboard0"
  39.         Driver      "kbd"
  40. EndSection
  41.  
  42. Section "InputDevice"
  43.         Identifier  "Mouse0"
  44.         Driver      "mouse"
  45.         Option      "Protocol" "auto"
  46.         Option      "Device" "/dev/input/mice"
  47.         Option      "ZAxisMapping" "4 5 6 7"
  48. EndSection
  49.  
  50. Section "Monitor"
  51.         Identifier   "Monitor0"
  52.         VendorName   "Monitor Vendor"
  53.         ModelName    "Monitor Model"
  54.         DisplaySize 1920 1080
  55. EndSection
  56.  
  57. Section "Device"
  58.         ### Available Driver options are:-
  59.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  60.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  61.         ### [arg]: arg optional
  62.         #Option     "PrintVGARegs"              # [<bool>]
  63.         #Option     "PrintTVRegs"               # [<bool>]
  64.         #Option     "I2CScan"                   # [<bool>]
  65.         Option     "VBEModes" "True"            # [<bool>]
  66.         #Option     "NoAccel"                   # [<bool>]
  67.         Option     "AccelMethod" "exa"          # <str>
  68.         #Option     "ExaNoComposite"            # [<bool>]
  69.         Option     "ExaScratchSize" "8192"      # <i>
  70.         Option     "SWCursor"                   # [<bool>]
  71.         #Option     "ShadowFB"                  # [<bool>]
  72.         #Option     "Rotate"                    # [<str>]
  73.         #Option     "VideoRAM"                  # <i>
  74.         Option          "ActiveDevice" "DFP"
  75.         #Option     "BusWidth"                  # [<str>]
  76.         #Option     "Center"                    # [<bool>]
  77.         #Option     "PanelSize"                 # [<str>]
  78.         #Option     "ForcePanel"                # [<bool>]
  79.         #Option     "TVDotCrawl"                # [<bool>]
  80.         #Option     "TVDeflicker"               # <i>
  81.         Option     "TVType"      "PAL"          # [<str>]
  82.         #Option     "TVOutput"                  # [<str>]
  83.         #Option     "DisableVQ"                 # [<bool>]
  84.         #Option     "DisableIRQ"                # [<bool>]
  85.         #Option     "EnableAGPDMA"              # [<bool>]
  86.         #Option     "NoAGPFor2D"                # [<bool>]
  87.         #Option     "NoXVDMA"                   # [<bool>]
  88.         #Option     "VbeSaveRestore"            # [<bool>]
  89.         #Option     "DisableXvBWCheck"          # [<bool>]
  90.         Option     "MaxDRIMem" "16384"          # <i>
  91.         Option          "MigrationHeuristic" "greedy"
  92.         #Option     "AGPMem"                    # <i>
  93.         Identifier  "Card0"
  94.         Driver      "openchrome"
  95.         VendorName  "Unknown Vendor"
  96.         BoardName   "Unknown Board"
  97.         BusID       "PCI:1:0:0"
  98. EndSection
  99.  
  100.  
  101. Section "Screen"
  102.         Identifier "Screen0"
  103.         Device     "Card0"
  104.         Monitor    "Monitor0"
  105.         SubSection "Display"
  106.                 Viewport   0 0
  107.                 Depth     24
  108.                 Modes "testgreg"
  109.         EndSubSection
  110. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement