Skip to content

Working xorg.conf file for Apple Cinema Display 23′ with ATI Radeon XT1900

  • by
  1. /etc/X11/xorg.conf
  2. # 20071208 edit
  3. # Working x.org config file for the Apple Cinema Display
  4. # Video card is ATI radeon XT 1900 with proprietary drivers
  5. # (cai mal, je sais, j’ai honte!)
  6. #
  7. # Refer to the xorg.conf man page for details about the format of
  8. # this file.
  9. Section “ServerFlags”
  10. #DontZap # disable (server abort)
  11. #DontZoom # disable <KP_+>/<KP_-> (resolution switching)
  12. AllowMouseOpenFail # allows the server to start up even if the mouse does not work
  13. EndSection
  14. Section “Module”
  15. Load “dbe” # Double-Buffering Extension
  16. Load “v4l” # Video for Linux
  17. Load “extmod”
  18. Load “type1”
  19. Load “freetype”
  20. Load “glx” # 3D layer
  21. Load “dri” # direct rendering
  22. EndSection
  23. Section “InputDevice”
  24. Identifier “Keyboard1”
  25. Driver “kbd”
  26. Option “XkbModel” “pc105”
  27. Option “XkbLayout” “fr”
  28. Option “XkbOptions” “compose:rwin”
  29. EndSection
  30. Section “InputDevice”
  31. Identifier “Mouse1”
  32. Driver “mouse”
  33. Option “Protocol” “ExplorerPS/2”
  34. Option “Device” “/dev/mouse”
  35. EndSection
  36. Section “Monitor”
  37. Identifier “monitor1”
  38. VendorName “Apple”
  39. ModelName “Apple Cinema Display 23 LCD”
  40. HorizSync 30-130
  41. VertRefresh 60
  42. EndSection
  43. Section “Device”
  44. Identifier “device1”
  45. VendorName “ATI Technologies Inc”
  46. BoardName “ATI Radeon X1300 – X1950”
  47. Driver “fglrx”
  48. Option “DPMS”
  49. EndSection
  50. Section “Screen”
  51. Identifier “screen1”
  52. Device “device1”
  53. Monitor “monitor1”
  54. DefaultColorDepth 24
  55. Subsection “Display”
  56. Depth 16
  57. Modes “1920×1200” “1400×1050”
  58. EndSubsection
  59. Subsection “Display”
  60. Depth 24
  61. Modes “1920×1200” “1400×1050”
  62. EndSubsection
  63. EndSection
  64. Section “ServerLayout”
  65. Identifier “layout1”
  66. InputDevice “Keyboard1” “CoreKeyboard”
  67. InputDevice “Mouse1” “CorePointer”
  68. Screen “screen1”
  69. EndSection