IBM ThinkPad R51 Dual monitor Debian linuxon

Tegnap sikerült végre megoldani, hogy használni tudjam 2 monitorral a fenti típusú notebookot. A géphez egy 15" Samsung LCD monitor van hozzácsatolva. A dolog Xinerama segítségével valósul meg. Tökéletesen, nagyon jól használható. Az LCD jobbra található a géphez viszonyítva (RightOf opció a ServerLayout sectionben). Így jobb nekem. Alant található xorg.conf plusz egy kis egér konfiguráció is.

Az egér egy Microsoft Intellimouse Optical 1.1A, melyen minden gomb úgy mûködik, ahogy kell. .imwheelrc file:

".*"
None,Down,Alt_L|Left
None,Up,Alt_L|Right

A gombokat beállító init script (nem tudom, miért kell kétszer futtatni az xmodmapet, de csak így mûködik..):

#!/bin/bash
killall imwheel;
xmodmap -e "pointer = 1 2 3 6 7 4 5";
BINARY=$(which imwheel);
$BINARY -k -p -b "6 7";
killall imwheel;
xmodmap -e "pointer = 1 2 3 6 7 8 9";
BINARY=$(which imwheel);
$BINARY -k -p -b "9 8";

exit 0;

Az xorg.conf fájlom:

Section "Files"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "hu"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ExplorerPS/2"
Option "Buttons" "7"
Option "ZAxisMapping" "6 7"
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 "Laptop"
Driver "i810"
BusId "PCI:0:2:0"
Screen 0
Option "MonitorLayout" "CRT,LFP"
# Option "MonitorLayout" "CRT,CRT+LFP"
# Option "UseFBDev" "true"
EndSection

Section "Device"
Identifier "External"
Driver "i810"
BusId "PCI:0:2:0"
Screen 1
Option "MonitorLayout" "CRT,LFP"
Option "DevicePresence" "yes"
# Option "UseFBDev" "true"
EndSection

Section "Monitor"
Identifier "Main Monitor"
Option "DPMS"
HorizSync 28-49
VertRefresh 43-72
EndSection

Section "Monitor"
Identifier "Second Monitor"
Option "DPMS"
HorizSync 28-49
VertRefresh 43-72
EndSection

Section "Screen"
Identifier "Main Screen"
Device "Laptop"
Monitor "Main Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "Screen"
Identifier "Second Screen"
Device "External"
Monitor "Second Monitor"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Main Screen" 0 0
Screen 1 "Second Screen" RightOf "Main Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
Option "Xinerama" "true"
EndSection

Section "DRI"
Mode 0666
EndSection

Hozzászóláshoz a Disqus szolgáltatását használom, korábbi vélemények elovlasásához és új hozzászólás írásához engedélyezd a Disqus-tól származó JavaScripteteket.