Advertisement
Guest User

xorf config

a guest
May 6th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. root:/# cat /etc/X11/xorg.conf.d/xkb-defaults.conf
  2. Section "InputClass"
  3. Identifier "XKB Defaults"
  4. MatchIsKeyboard "yes"
  5. Option "XkbOptions" "terminate:ctrl_alt_bksp"
  6. EndSection
  7.  
  8. root:/# cat /etc/X11/xorg.conf.d/videocard-0.conf
  9. Section "Device"
  10. Identifier "Videocard0"
  11. Driver "vesa"
  12. VendorName "Videocard vendor"
  13. BoardName "Radeon HD 6480G"
  14. Option "NoAccel" "true"
  15. EndSection
  16.  
  17. root:/# cat /etc/X11/xorg.conf.d/server-layout.conf
  18. Section "ServerLayout"
  19. Identifier "DefaultLayout"
  20. # Screen 0 "Screen0" 0 0
  21. # Screen 1 "Screen1" LeftOf "Screen0"
  22. Option "Xinerama"
  23. EndSection
  24.  
  25. root:/# cat /etc/X11/xorg.conf.d/xorg.conf
  26. Section "ServerLayout"
  27. Identifier "X.org Configured"
  28. Screen 0 "Screen0" 0 0
  29. InputDevice "Mouse0" "CorePointer"
  30. InputDevice "Keyboard0" "CoreKeyboard"
  31. EndSection
  32.  
  33. Section "Files"
  34. ModulePath "/opt/xorg/lib/xorg/modules"
  35. FontPath "/opt/xorg/share/fonts/X11/misc/"
  36. FontPath "/opt/xorg/share/fonts/X11/TTF/"
  37. FontPath "/opt/xorg/share/fonts/X11/OTF/"
  38. FontPath "/opt/xorg/share/fonts/X11/Type1/"
  39. FontPath "/opt/xorg/share/fonts/X11/100dpi/"
  40. FontPath "/opt/xorg/share/fonts/X11/75dpi/"
  41.  
  42. FontPath "/usr/share/fonts/"
  43. FontPath "/usr/share/fonts/win"
  44. FontPath "/usr/share/fonts/encoding"
  45. FontPath "/usr/share/fonts/curillic"
  46. FontPath "/usr/share/fonts/X11-TTF"
  47. FontPath "/usr/share/fonts/X11-OTF"
  48. EndSection
  49.  
  50. Section "Module"
  51. Load "glx"
  52. Load "dri2"
  53. Load "glamoregl"
  54. EndSection
  55.  
  56. Section "InputDevice"
  57. Identifier "Keyboard0"
  58. Driver "kbd"
  59. EndSection
  60.  
  61. Section "InputDevice"
  62. Identifier "Mouse0"
  63. Driver "mouse"
  64. Option "Protocol" "auto"
  65. Option "Device" "/dev/input/mice"
  66. Option "ZAxisMapping" "4 5 6 7"
  67. EndSection
  68.  
  69. Section "Monitor"
  70. Identifier "Monitor0"
  71. VendorName "Monitor Vendor"
  72. ModelName "Monitor Model"
  73. EndSection
  74.  
  75. Section "Device"
  76. ### Available Driver options are:-
  77. ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  78. ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
  79. ### <percent>: "<f>%"
  80. ### [arg]: arg optional
  81. #Option "Accel" # [<bool>]
  82. #Option "SWcursor" # [<bool>]
  83. #Option "EnablePageFlip" # [<bool>]
  84. #Option "ColorTiling" # [<bool>]
  85. #Option "ColorTiling2D" # [<bool>]
  86. #Option "RenderAccel" # [<bool>]
  87. #Option "SubPixelOrder" # [<str>]
  88. #Option "AccelMethod" # <str>
  89. #Option "EXAVSync" # [<bool>]
  90. #Option "EXAPixmaps" # [<bool>]
  91. #Option "ZaphodHeads" # <str>
  92. #Option "EnablePageFlip" # [<bool>]
  93. #Option "SwapbuffersWait" # [<bool>]
  94. Identifier "Card0"
  95. Driver "vesa"
  96. # BusID "PCI:0:1:0"
  97. EndSection
  98.  
  99. Section "Screen"
  100. Identifier "Screen0"
  101. Device "Card0"
  102. Monitor "Monitor0"
  103. SubSection "Display"
  104. Viewport 0 0
  105. Depth 1
  106. Modes "1280x720 1024x768"
  107. EndSubSection
  108. SubSection "Display"
  109. Viewport 0 0
  110. Depth 4
  111. Modes "1280x720 1024x768"
  112. EndSubSection
  113. SubSection "Display"
  114. Viewport 0 0
  115. Depth 8
  116. Modes "1280x720 1024x768"
  117. EndSubSection
  118. SubSection "Display"
  119. Viewport 0 0
  120. Depth 15
  121. Modes "1280x720 1024x768"
  122. EndSubSection
  123. SubSection "Display"
  124. Viewport 0 0
  125. Depth 16
  126. Modes "1280x720 1024x768"
  127. EndSubSection
  128. SubSection "Display"
  129. Viewport 0 0
  130. Depth 24
  131. Modes "1280x720 1024x768"
  132. EndSubSection
  133. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement