[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Fullscreen nicht gesplittet auf zwei Monitore



Martin Wilske schrieb:
> Hallo Liste,
> 
> auch etwas Recherche hat mir nicht bei der Lösung des folgenden
> "kleinen" (?) Problems geholfen.
> Ich arbeite mit zwei gleichen Monitoren, die auch wunderbar zusammen
> (aka "Screen1" LeftOf "Screen0") funktionieren. Möchte ich nun jedoch
> eine Anwendung im Vollbildmodus starten, bzw. wird der Vollbildmodus
> verwendet, so wird das Bild auf beide Monitore "aufgeteilt", jeder
> Monitor bekommt gerechterweise die Hälfte des Vollbildes zur
> Darstellung. Doch der schmale Balken der TFT-Ränder stört in der Mitte,
> sodass ich gern irgendwo festlegen möchte, dass Vollbild entweder auf
> einen bestimmten Monitor ausgegeben wird oder halt das Vollbild (von
> z.B. 1280x1024) entweder ganz links oder ganz rechts in der verfügbaren
> Fläche (2560x1024) dargestellt werden soll.
> Stand jemand vor dem gleichen Problem? Und/oder hat jemand eine Lösung
> dafür?
> 
> Als Graphikkarte unterstützt mich eine 7600er Nvidia, sollte aber
> eigentlich nicht mit dem Treiber zusammenhängen, sondern eher ne
> xorg.conf-Sache sein, oder?
> 
> Vielen Dank schonmal und viele Grüße aus Dresden.
> 
> Martin
> 

Hallo,

Ich benutze auch zwei Monitore. Bei mir startet der Vollbildmodus jedoch
nur auf einen Monitor.
Der Vollbildmodus startet nur auf meinen rechten Monitor.
Ich hänge meine xorg.conf an. Vielleicht hilft der diese dann weiter.
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen         "rechts"
	Screen         "links" LeftOf "rechts"
	Option         "Xinerama" "on"
	InputDevice    "Generic Keyboard"
	InputDevice    "Configured Mouse"
EndSection

Section "Files"

	# path to defoma fonts
	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"
	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  "v4l"
	Load  "vbe"
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/psaux"
	Option	    "Protocol" "ExplorerPS/2"
EndSection

Section "Monitor"
	Identifier   "noc"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "acer"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection



Section "Device"
	Identifier  "dvi"
	Driver      "fglrx"
	Screen      0
	BusID       "PCI:1:0:0"
EndSection

Section "Device"
	Identifier  "dsub"
	Driver      "fglrx"
	Screen      1
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "links"
	Device     "dsub"
	Monitor    "noc"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "rechts"
	Device     "dvi"
	Monitor    "acer"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "DRI"
	Mode         0666
EndSection


Reply to: