Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
craig
GitHub Repository: craig/ge.mine.nu
Path: blob/master/website/d400/xorg.conf
100 views
1
Section "Files"
2
RgbPath "/usr/share/X11/rgb"
3
4
FontPath "/usr/share/fonts/local"
5
FontPath "/usr/share/fonts/misc"
6
FontPath "/usr/share/fonts/Type1"
7
FontPath "/usr/share/fonts/TTF"
8
FontPath "/usr/share/fonts/CID"
9
FontPath "/usr/share/fonts/75dpi"
10
FontPath "/usr/share/fonts/100dpi"
11
ModulePath "/usr/lib/xorg/modules"
12
EndSection
13
14
Section "Module"
15
Load "dbe"
16
SubSection "extmod"
17
Option "omit xfree86-dga"
18
EndSubSection
19
Load "type1"
20
Load "freetype"
21
# Load "glx"
22
EndSection
23
24
Section "ServerFlags"
25
Option "blank time" "10" # 10 minutes
26
EndSection
27
28
Section "InputDevice"
29
Identifier "Keyboard1"
30
Driver "keyboard"
31
# Option "AutoRepeat" "500 5"
32
Option "XkbLayout" "de"
33
Option "XkbVariant" "nodeadkeys"
34
EndSection
35
36
Section "InputDevice"
37
Identifier "Mouse1"
38
Driver "mouse"
39
Option "Protocol" "Auto"
40
Option "Device" "/dev/psaux"
41
Option "ChordMiddle"
42
EndSection
43
44
Section "Monitor"
45
Identifier "Generic Monitor"
46
HorizSync 60
47
# VertRefresh 50
48
EndSection
49
50
Section "Device"
51
Identifier "dev0"
52
Driver "i810"
53
Option "DRI" "true"
54
EndSection
55
56
57
Section "Screen"
58
Identifier "Screen 1"
59
Device "dev0"
60
Monitor "Generic Monitor"
61
DefaultDepth 24
62
63
SubSection "Display"
64
Depth 24
65
Modes "1024x768"
66
EndSubSection
67
EndSection
68
69
Section "ServerLayout"
70
Identifier "Main Layout"
71
Screen "Screen 1"
72
InputDevice "Mouse1" "CorePointer"
73
InputDevice "Keyboard1" "CoreKeyboard"
74
EndSection
75
76