xorg.conf 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Section "Device"
  2. Identifier "Video Device"
  3. Driver "modesetting"
  4. # Option "Atomic" "true"
  5. Option "NoCursor" "true"
  6. EndSection
  7. Section "OutputClass"
  8. Identifier "starfive display"
  9. MatchDriver "starfive"
  10. Option "PrimaryGPU" "true"
  11. EndSection
  12. Section "Monitor"
  13. Identifier "Monitor"
  14. # Option "DPMS" "false"
  15. EndSection
  16. Section "Screen"
  17. Identifier "Screen"
  18. Monitor "Monitor"
  19. Device "Video Device"
  20. EndSection
  21. Section "ServerLayout"
  22. Identifier "Server Layout"
  23. Screen "Screen"
  24. EndSection
  25. Section "ServerFlags"
  26. Option "DefaultServerLayout" "Server Layout"
  27. # Enable support for DRM format modifiers
  28. # Option "Debug" "dmabuf_capable"
  29. # Disable screen blanking. Disable DPMS in the Monitor section as well.
  30. # Option "BlankTime" "35790"
  31. # Option "StandbyTime" "35790"
  32. # Option "SuspendTime" "35790"
  33. # Option "OffTime" "35790"
  34. EndSection