|
每次从fvwm用ctrl+alt+baskspace退出X时,或是在urxvt上执行reboot是,显卡风扇好像及其不满,加速旋转起来,弄得我很不爽。有没有什么办法解决呢?下面是我的/etc/X11/xorg.conf文件。
1 Section "Files"
2
3 FontPath "/usr/share/fonts/arphicfonts"
4 FontPath "/usr/share/fonts/wqy-bitmapfont"
5 FontPath "/usr/share/fonts/TTF"
6 FontPath "/usr/share/fonts/ttf-bitstream-vera"
7 FontPath "/usr/share/fonts/dejavu"
8 FontPath "/usr/share/fonts/corefonts"
9 FontPath "/usr/share/fonts/default/ghostscript"
10 FontPath "/usr/share/fonts/misc"
11
12 # ModulePath can be used to set a search path for the X server modules.
13 # The default path is shown here.
14
15 ModulePath "/usr/lib64/xorg/modules"
16
17 EndSection
18
19#*****************************************
20 # Module section -- this is an optional section which is used to specify
21 # which run-time loadable modules to load when the X server starts up.
22#**********************************************************************
23
24 Section "Module"
25
26 # This loads the DBE extension module.
27
28 Load "glx"
29 Load "type1"
30 Load "freetype"
31 Disable "dri"
32 Disable "dri2"
33
34 # This loads the miscellaneous extensions module, and disables
35 # initialisation of the XFree86-DGA extension within that module.
36
37 SubSection "extmod"
38 Option "omit xfree86-dga"
39 EndSubSection
40
41 EndSection
42
43
44 # **********************************************************************
45 # Server flags section. This contains various server-wide Options.
46#**********************************************************************
47
48 Section "ServerFlags"
49 Option "BlankTime" "10" # 10 minutes
50 Option "StandbyTime" "10" # 10 minutes
51 Option "SuspendTime" "10" # 10 minutes
52 Option "OffTime" "10" # 10 minutes
53 EndSection
54
55#**********************************************************************
56 # Input devices
57#**********************************************************************
58
59#**********************************************************************
60 # Core keyboard's InputDevice section
61#**********************************************************************
62
63 Section "InputDevice"
64
65 Identifier "Keyboard1"
66 Driver "kbd"
67
68 Option "CoreKeyboard"
69 Option "XkbRules" "xorg"
70 Option "XkbModel" "pc105"
71 Option "XkbLayout" "en_US"
72
73 EndSection
74
75
76#**********************************************************************
77 # Core Pointer's InputDevice section
78#**********************************************************************
79
80 Section "InputDevice"
81
82 # Identifier and driver
83
84 Identifier "Mouse1"
85 Driver "mouse"
86
87 # The mouse protocol and device. The device is normally set to /dev/mouse,
88 # which is usually a symbolic link to the real device.
89 Option "CorePointer"
90 Option " rotocol" "Auto"
91 Option "Device" "/dev/mouse"
92 Option "ZAxisMapping" "4 5"
93 EndSection
94
95
96#**********************************************************************
97 # Monitor section
98#**********************************************************************
99
100 # Any number of monitor sections may be present
101
102 Section "Monitor"
103
104 # The identifier line must be present.
105
106 Identifier "Generic Monitor"
107 HorizSync 75 # typical for a single frequency fixed-sync monitor
108 VertRefresh 60 # typical for a single frequency fixed-sync monitor
109
110 Mode "640x480"
111 DotClock 25.175
112 HTimings 640 664 760 800
113 VTimings 480 491 493 525
114 EndMode
115
116 EndSection
117
118#**********************************************************************
119 # Graphics device section
120#**********************************************************************
121
122 # Any number of graphics device sections may be present
123
124 Section "Device"
125
126 # The Identifier must be present.
127
128 Identifier "Generic VESA"
129 Driver "nvidia"
130 BusID " CI:2:0:0"
131 Option "RenderAccel" "true"
132 EndSection
133#**********************************************************************
134 # Screen sections.
135#**********************************************************************
136
137 Section "Screen"
138 Identifier "Screen 1"
139 Device "Generic VESA"
140 Monitor "Generic Monitor"
141 DefaultDepth 24
142 SubSection "Display"
143 Depth 24
144 Modes "1280x1024"
145 EndSubSection
146 EndSection
147
148 Section "ServerLayout"
149
150 Identifier "Main Layout"
151 InputDevice "Mouse1" "CorePointer"
152 InputDevice "Keyboard1" "CoreKeyboard"
153
154 EndSection
155
156 Section "ServerLayout"
157 Identifier "another layout"
158 Screen "Screen 1"
159 InputDevice "Mouse1" "CorePointer"
160 InputDevice "Keyboard1" "CoreKeyboard"
161 EndSection
162
163
164 Section "ServerLayout"
165 Identifier "simple layout"
166 Screen "Screen 1"
167 InputDevice "Mouse1" "CorePointer"
168 InputDevice "Keyboard1" "CoreKeyboard"
169 EndSection |
|