Input Devices bestimmten Screens zuweisen (xorg)

cuddlytux

cuddlytux

Alles außer unix ist sc..
Hallo!
Ich habe ein LCD mit Touchpad an mein Laptop angeschlossen und das Notebookdisplay und den LCD als zwei screens definiert.
Jetzt möchte ich das Touchpad auf dem Screen vom LCD und die Maus und Tastatur auf dem Laptop benutzen. Wie mache ich das?
Mein Layout:
Code:
Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          0 "Default Screen"
        Screen          1 "Touchscreens Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Synaptics Touchpad"
        Option "AIGLX"  "on"
EndSection

Gruß
Jan
.
.
.
EDIT (autom. Beitragszusammenführung) :
.

Hier noch meine xorg.conf:
Code:
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	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"vbe"
	Load	"dbe"
EndSection

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

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	Option		"EmulateWheel"		"true"
	Option		"EmulateWheelButton"	"2"
EndSection

Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
EndSection

Section "InputDevice"
	Identifier	"Fernbedienung"
	Driver		"mouse"
	Option		"Device"		"/dev/input/by-id/usb-Formosa_Industrial_Computin_Formosa_RC102-809_USB_Remot-event-mouse"
	Option		"Protocol"		"Auto"
EndSection

Section "Device"
	Identifier	"Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
	Driver		"i810"
	BusID		"PCI:0:2:0"
	Option		"MonitorLayout"	"CRT,LFP"
	Option		"RenderAccel"	"true"
	Option		"AllowGLXWithComposite"	"true"
	Option 		"AddARGBGLXVisuals" "On"
	Screen		0
EndSection

Section "Device"
	Identifier	"Intel extern"
	Driver		"i810"
	BusID		"PCI:0:2:0"
	Option		"Display"	"CRT"
	Option		"MonitorLayout"	"CRT,LFP"
	Option		"RenderAccel"	"true"
	Option		"AllowGLXWithComposite"	"true"
	Option 		"AddARGBGLXVisuals" "On"
	Screen		1
EndSection

Section "Monitor"
	Identifier	"Standardbildschirm"
	Option		"DPMS"
        HorizSync       30-60
        VertRefresh     50-75
EndSection

Section "Monitor"
	Identifier	"Touchscreen"
	Option		"DPMS"
        HorizSync       30-60
        VertRefresh     50-75
EndSection

Section "Screen"
	Identifier	"Touchscreens Screen"
	Device		"Intel extern"
	Monitor		"Touchscreen"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"800x600"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"800x600"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"800x600"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"800x600"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"800x600"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"800x600"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
	Monitor		"Standardbildschirm"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		0 "Default Screen"
	Screen		1 "Touchscreens Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice	"Synaptics Touchpad"
	Option "AIGLX"	"on"
EndSection

Section "DRI"
	Mode	0666
EndSection

Section "Extensions"
	Option 	"Composite"	"Enable"
EndSection
 
Zuletzt bearbeitet:

Ähnliche Themen

X startet nichtmehr

Zweiter Monitor geht bei Vollbildspielen aus.

Monitor getauscht, Schriftgrößen verstellt

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

OpenSource ATI-Treiber: Automatische Konfiguration (zwei X-Screens)

Zurück
Oben