Advertisement
Guest User

Untitled

a guest
Aug 11th, 2020
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.28 KB | None | 0 0
  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/misc"
  11.         FontPath     "/usr/share/fonts/TTF"
  12.         FontPath     "/usr/share/fonts/OTF"
  13.         FontPath     "/usr/share/fonts/Type1"
  14.         FontPath     "/usr/share/fonts/100dpi"
  15.         FontPath     "/usr/share/fonts/75dpi"
  16. EndSection
  17.  
  18. Section "Module"
  19.         Load  "glx"
  20. EndSection
  21.  
  22. Section "InputDevice"
  23.         Identifier  "Keyboard0"
  24.         Driver      "kbd"
  25.         Option "XkbLayout" "us,ru"
  26.         Option "XkbOptions" "grp:caps_toggle"
  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. EndSection
  42.  
  43. Section "Device"
  44.         ### Available Driver options are:-
  45.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  46.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  47.         ### <percent>: "<f>%"
  48.         ### [arg]: arg optional
  49.         #Option     "Accel"                     # [<bool>]
  50.         #Option     "SWcursor"                  # [<bool>]
  51.         #Option     "EnablePageFlip"            # [<bool>]
  52.         #Option     "ColorTiling"               # [<bool>]
  53.         #Option     "ColorTiling2D"             # [<bool>]
  54.         #Option     "RenderAccel"               # [<bool>]
  55.         #Option     "SubPixelOrder"             # [<str>]
  56.         #Option     "AccelMethod"               # <str>
  57.         #Option     "ShadowPrimary"             # [<bool>]
  58.         #Option     "EXAVSync"                  # [<bool>]
  59.         #Option     "EXAPixmaps"                # [<bool>]
  60.         #Option     "ZaphodHeads"               # <str>
  61.         #Option     "SwapbuffersWait"           # [<bool>]
  62.         #Option     "DeleteUnusedDP12Displays"  # [<bool>]
  63.         #Option     "DRI3"                      # [<bool>]
  64.         #Option     "DRI"                       # <i>
  65.         #Option     "TearFree"                  # [<bool>]
  66.         Identifier  "Card0"
  67.         Driver      "radeon"
  68.         BusID       "PCI:0:1:0"
  69. EndSection
  70.  
  71.  
  72. Section "Screen"
  73.         Identifier "Screen0"
  74.         Device     "Card0"
  75.         Monitor    "Monitor0"
  76.         SubSection "Display"
  77.                 Viewport   0 0
  78.                 Depth     1
  79.         EndSubSection
  80.         SubSection "Display"
  81.                 Viewport   0 0
  82.                 Depth     4
  83.         EndSubSection
  84.         SubSection "Display"
  85.                 Viewport   0 0
  86.                 Depth     8
  87.         EndSubSection
  88.         SubSection "Display"
  89.                 Viewport   0 0
  90.                 Depth     15
  91.         EndSubSection
  92.         SubSection "Display"
  93.                 Viewport   0 0
  94.                 Depth     16
  95.         EndSubSection
  96.         SubSection "Display"
  97.                 Viewport   0 0
  98.                 Depth     24
  99.         EndSubSection
  100. EndSection
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement