AlonblImplementation: xorg.conf

File xorg.conf, 0.7 KB (added by alonbl, 3 years ago)

/etc/X11/xorg.conf

Line 
1#@ALON-BEGIN
2
3Section "Module"
4        Load    "extmod"
5        Load    "dbe"
6        Load    "glx"
7        Load    "freetype"
8        Load    "type1"
9        Load    "record"
10        Load    "dri"
11EndSection
12
13Section "InputDevice"
14        Identifier      "Mouse1"
15        Driver          "tslib"
16        Option          "Device"        "/dev/input/event1"
17        Option          "Width" "480"
18        Option          "Height" "640"
19        Option          "EmulateRightButton" "1"
20EndSection
21
22Section "Monitor"
23        Identifier      "Monitor1"
24EndSection
25
26Section "Device"
27        Identifier      "Device1"
28        Driver          "fbdev"
29EndSection
30
31Section "Screen"
32        Identifier      "Screen1"
33        Device          "Device1"
34        Monitor         "Monitor1"
35EndSection
36
37Section "ServerLayout"
38        Identifier      "Layout1"
39        Screen          "Screen1"
40        InputDevice     "Mouse1"        "CorePointer"
41EndSection
42
43#@ALON-END