NicolasMasse: xorg.conf

File xorg.conf, 1.7 kB (added by nmasse, 5 years ago)

The configuration file of Xorg

Line 
1Section "Files"
2    RgbPath     "/usr/share/X11/rgb"
3    FontPath    "/usr/share/fonts/local"
4    FontPath    "/usr/share/fonts/misc"
5    FontPath    "/usr/share/fonts/Type1"
6    FontPath    "/usr/share/fonts/TTF"
7    FontPath    "/usr/share/fonts/CID"
8    FontPath    "/usr/share/fonts/75dpi"
9    FontPath    "/usr/share/fonts/100dpi"
10EndSection
11
12Section "Module"
13    Load        "dbe"
14    SubSection  "extmod"
15        Option  "omit xfree86-dga"
16    EndSubSection
17    Load        "type1"
18    Load        "freetype"
19    Load        "glx"
20    Load        "dri"
21EndSection
22
23Section "ServerFlags"
24    Option      "blank time"    "5"
25    Option      "standby time"  "5"
26    Option      "suspend time"  "5"
27    Option      "off time"      "5"
28EndSection
29
30Section "DRI"
31    Mode        0666
32EndSection
33
34Section "InputDevice"
35    Identifier  "Keyboard"
36    Driver      "kbd"
37    Option      "XkbModel"      "pc105"
38    Option      "XkbLayout"     "fr"
39EndSection
40
41Section "InputDevice"
42  Identifier    "Mice"
43  Driver        "mouse"
44
45  Option        "Device"        "/dev/input/mice"
46  Option        "Protocol"      "ImPS/2"
47EndSection
48
49
50Section "Monitor"
51    Identifier  "LCD Display"
52    Option      "dpms"
53EndSection
54
55Section "Device"
56    Identifier  "ATI Radeon Xpress 200"
57    Driver      "fglrx"
58
59    # Allow screen rotation
60    Option      "RandRRotation" "on"
61
62    # You cannot have an XV and an OpenGL overlay simultaneously.
63    Option      "VideoOverlay" "on"
64    Option      "OpenGLOverlay" "on"
65EndSection
66
67Section "Screen"
68    Identifier  "Screen"
69    Device      "ATI Radeon Xpress 200"
70    Monitor     "LCD Display"
71    DefaultDepth 24
72
73    SubSection "Display"
74        Depth           24
75        Modes           "1280x800" "800x1280"
76    EndSubsection
77EndSection
78
79Section "ServerLayout"
80    Identifier  "Main Layout"
81    Screen      "Screen"
82
83    InputDevice "Mice" "CorePointer"
84    InputDevice "Keyboard" "CoreKeyboard"
85EndSection
86