Advertisement
inukaze

Inukaze - xorg.conf

Feb 11th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. # Inukaze config for Nvidia-Cards
  2. # for any GNU/Linux distribution put this content in /etc/X11/xorg.conf
  3. # for Manjaro mwhd put in /etc/X11/mhwd.d/nvidia.conf
  4.  
  5. Section "ServerLayout"
  6. Identifier "Default Layout"
  7. Screen 0 "Screen0" 0 0
  8. InputDevice "Keyboard0" "CoreKeyboard"
  9. InputDevice "Mouse0" "CorePointer"
  10. Option "Xinerama" "0"
  11. EndSection
  12.  
  13. Section "Module"
  14. Load "bitmap"
  15. Load "int10"
  16. Load "type1"
  17. Load "freetype"
  18. Load "synaptics"
  19. EndSection
  20.  
  21. Section "ServerFlags"
  22. Option "DontZap" "False"
  23. Option "Xinerama" "0"
  24. EndSection
  25.  
  26. Section "InputDevice"
  27. Identifier "Keyboard0"
  28. Driver "kbd"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32. Identifier "Mouse0"
  33. Driver "mouse"
  34. Option "Protocol" "auto"
  35. Option "Device" "/dev/psaux"
  36. Option "Emulate3Buttons" "no"
  37. Option "ZAxisMapping" "4 5"
  38. EndSection
  39.  
  40. Section "Monitor"
  41. Identifier "Monitor0"
  42. VendorName "Toshiba Matsushita Display Technology Co., Ltd"
  43. ModelName "190LM00006"
  44. Option "DPMS" "TRUE"
  45. EndSection
  46.  
  47. Section "Device"
  48. Identifier "Device0"
  49. Driver "nvidia"
  50. VendorName "NVIDIA Corporation"
  51. BoardName "GeForce GT 620"
  52. Option "DPMS" "True"
  53. Option "DRI" "True"
  54. Option "RenderAccel" "True"
  55. Option "NoLogo" "True"
  56. Option "AddARGBVisuals" "True"
  57. Option "AddARGBGLXVisuals" "True"
  58. Option "AllowGLXWithComposite" "True"
  59. Option "TripleBuffer" "True"
  60. Option "HWCursor" "True"
  61. Option "CursorShadow" "True"
  62. Option "RegistryDwords" "PerfLevelSrc=0x3333"
  63. Option "NoPowerConnectorCheck" "True"
  64. Option "UseEdidFreqs" "True"
  65. Option "backingstore" "True"
  66. Option "XAANoOffscreenPixmaps" "True"
  67. Option "GLShaderDiskCache" "True"
  68. Option "CIOverlay" "True"
  69. Option "TransparentIndex" "25"
  70. Option "OverlayDefaultVisual" "True"
  71. Option "nvidiaXineramaInfo" "True"
  72. Option "nvidiaXineramaInfoOrder" "True"
  73. Option "MultisampleCompatibility" "False"
  74. Option "DamageEvents" "True"
  75. Option "SLI" "False"
  76. Option "UseEvents" "True"
  77. Option "AllowSHMPixmaps" "True"
  78. Option "InitializeWindowBackingPixmaps" "True"
  79. Option "AllowUnofficialGLXProtocol" "True"
  80. Option "ConstrainCursor" "True"
  81. Option "UseHotplugEvents" "True"
  82. Option "ConstrainCursor" "True" #Retiene el cursor dentro de areas visibles
  83. Option "Interactive" "True" #Intenta determinar que causa los cuelges de la GPU y lo mata
  84. Option "AllowIndirectGLXProtocol" "True"
  85. Option "IndirectMemoryAccess" "True" #Permite acceder a la memoria de forma indirecta, comunmente el CPU limita el acceso hasta 256MB podria ayudar a mejorar el rendimiento
  86. Option "FlatPanelProperties" "DitheringMode=Auto"
  87. Option "MultiGPU" "False"
  88. Option "Coolbits" "0"
  89. Option "XvmcUsesTextures" "True"
  90. # Option "UseInt10Module" "True" #Publica todo a traves del modulo del nucleo
  91. Option "EmulatedOverlaysThreshold" "True" #Sacrifica calidad en favor del rendimiento
  92. Option "EmulatedOverlaysThresholdValue" "5" #5 Es el valor predeterminado
  93. EndSection
  94.  
  95. Section "Screen"
  96. Identifier "Screen0"
  97. Device "Device0"
  98. Monitor "Monitor0"
  99. DefaultDepth 24
  100. Option "AddARGBGLXVisuals" "True"
  101. Option "DPMS"
  102. Option "TwinView" "0"
  103. Option "TwinViewXineramaInfoOrder" "CRT-0"
  104. Option "Stereo" "0"
  105. Option "nvidiaXineramaInfoOrder" "CRT-0"
  106. Option "metamodes" "CRT: 1152x864_75 +0+0, CRT: 1024x768_60 +0+0, TV: 1024x768 +0+0; CRT: 800x600_60 +0+0, TV: nvidia-auto-select +0+0"
  107. SubSection "Display"
  108. Depth 24
  109. EndSubSection
  110. EndSection
  111.  
  112. Section "Extensions"
  113. Option "RENDER" "Enable"
  114. Option "Composite" "Enable"
  115. EndSection
  116.  
  117. Section "DRI"
  118. Mode 0666
  119. EndSection
  120.  
  121. Section "InputClass"
  122. Identifier "Keyboard Defaults"
  123. MatchIsKeyboard "yes"
  124. Option "XkbOptions" "terminate:ctrl_alt_bksp"
  125. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement