OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
2.4 KiB

  1. # T2 Live xorg.conf template - Rene Rebe
  2. Section "Module"
  3. Load "dbe"
  4. Load "ddc"
  5. SubSection "extmod"
  6. # Option "omit xfree86-dga"
  7. # Option "omit XFree86-VidModeExtension"
  8. EndSubSection
  9. Load "type1"
  10. Load "freetype"
  11. Load "glx"
  12. Load "dri"
  13. # Load "v4l"
  14. EndSection
  15. Section "DRI"
  16. Mode 0666
  17. EndSection
  18. Section "Files"
  19. RgbPath "/usr/X11/share/X11/rgb"
  20. FontPath "/usr/X11/lib/X11/fonts/75dpi/:unscaled"
  21. FontPath "/usr/X11/lib/X11/fonts/100dpi/:unscaled"
  22. FontPath "/usr/X11/lib/X11/fonts/CID/"
  23. FontPath "/usr/X11/lib/X11/fonts/PEX/"
  24. FontPath "/usr/X11/lib/X11/fonts/Speedo/"
  25. FontPath "/usr/X11/lib/X11/fonts/Type1/"
  26. FontPath "/usr/X11/lib/X11/fonts/cyrillic/"
  27. FontPath "/usr/X11/lib/X11/fonts/encodings/"
  28. FontPath "/usr/X11/lib/X11/fonts/freefont/"
  29. FontPath "/usr/X11/lib/X11/fonts/latin2/"
  30. FontPath "/usr/X11/lib/X11/fonts/local/"
  31. FontPath "/usr/X11/lib/X11/fonts/misc/"
  32. FontPath "/usr/X11/lib/X11/fonts/sharefont/"
  33. FontPath "/usr/X11/lib/X11/fonts/TTF/"
  34. EndSection
  35. Section "InputDevice"
  36. Identifier "Keyboard1"
  37. Driver "kbd"
  38. Option "AutoRepeat" "250 30"
  39. Option "XkbRules" "xorg"
  40. Option "XkbModel" "pc105"
  41. Option "XkbLayout" "us" # TODO
  42. # Option "XkbVariant" "nodeadkeys" # TODO
  43. EndSection
  44. Section "InputDevice"
  45. Identifier "Mouse1"
  46. Driver "mouse"
  47. Option "Protocol" "IMPS/2"
  48. Option "Device" "/dev/input/mice"
  49. # Option "Protocol" "Auto"
  50. # Option "Protocol" "Microsoft"
  51. # Option "Protocol" "PS/2"
  52. # Option "Device" "/dev/tts/0"
  53. # Option "Device" "/dev/misc/psaux"
  54. Option "Buttons" "5"
  55. Option "ZaxisMapping" "4 5"
  56. EndSection
  57. Section "Monitor"
  58. Identifier "Monitor1"
  59. $horiz_sync
  60. $vert_refresh
  61. EndSection
  62. Section "Device"
  63. Identifier "Card1"
  64. Driver "$xdrv"
  65. EndSection
  66. Section "Screen"
  67. Identifier "Screen1"
  68. Device "Card1"
  69. Monitor "Monitor1"
  70. DefaultDepth $depth
  71. Subsection "Display"
  72. Modes $modes
  73. EndSubsection
  74. EndSection
  75. Section "ServerLayout"
  76. Identifier "Simple Layout"
  77. Screen "Screen1"
  78. InputDevice "Mouse1" "CorePointer"
  79. InputDevice "Keyboard1" "CoreKeyboard"
  80. # InputDevice "Mouse2" "SendCoreEvents"
  81. # InputDevice "Tablet1"
  82. EndSection