diff options
author | Barry deFreese <bddebian@comcast.net> | 2006-03-02 22:08:41 +0000 |
---|---|---|
committer | Barry deFreese <bddebian@comcast.net> | 2006-03-02 22:08:41 +0000 |
commit | 971aefec67d07f3f42c66182c47c65349d23db15 (patch) | |
tree | 4ab32fe3c0a34febea716ff4b8713bdad7268ac5 /Hurd | |
parent | dccfdbf38bff79ee501c09baf02b0876f44e736b (diff) |
none
Diffstat (limited to 'Hurd')
-rw-r--r-- | Hurd/DebianXorg.mdwn | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/Hurd/DebianXorg.mdwn b/Hurd/DebianXorg.mdwn index 7158578f..488d25c6 100644 --- a/Hurd/DebianXorg.mdwn +++ b/Hurd/DebianXorg.mdwn @@ -47,7 +47,7 @@ This currently seems to be broken in the Debian package so it may be easier to j ### <a name="Edit_xorg_conf"> Edit xorg.conf </a> -Here is an example of my xorg.conf: +Here is an example of an xorg.conf using VESA at 800x600 that works on my Dell laptop: # /etc/X11/xorg.conf (xorg X Window System server configuration file) # @@ -109,9 +109,18 @@ Here is an example of my xorg.conf: Option "Protocol" "osmouse" EndSection + Section "InputDevice" + Identifier "Synaptics Touchpad" + Driver "synaptics" + Option "SendCoreEvents" "true" + Option "Device" "/dev/psaux" + Option "Protocol" "auto-dev" + Option "HorizScrollDelta" "0" + EndSection + Section "Device" Identifier "Videocard0" - Driver "ati" + Driver "vesa" EndSection Section "Monitor" @@ -129,30 +138,34 @@ Here is an example of my xorg.conf: DefaultDepth 24 SubSection "Display" Depth 1 - Modes "1024x768" + Modes "800x600" EndSubSection SubSection "Display" Depth 4 - Modes "1024x768" + Modes "800x600" EndSubSection SubSection "Display" Depth 8 - Modes "1024x768" + Modes "800x600" EndSubSection SubSection "Display" Depth 15 - Modes "1024x768" + Modes "800x600" EndSubSection SubSection "Display" Depth 16 - Modes "1024x768" + Modes "800x600" EndSubSection SubSection "Display" Depth 24 - Modes "1024x768" + Modes "800x600" EndSubSection EndSection + Section "DRI" + Mode 0666 + EndSection + ### <a name="Starting_X"> Starting X </a> Finally, run `startx` |