[讨论]Beryl如何实现双显示器多种效果

各种窗口管理器和美化相关
回复
thrandoll
帖子: 39
注册时间: 2006-09-16 12:27

[讨论]Beryl如何实现双显示器多种效果

#1

帖子 thrandoll » 2007-04-27 17:32

我发现这个东西
http://www.youtube.com/watch?v=CKgPdgYX ... ed&search=

我也有双显示器,但是只能配成一个桌面,或者是两个一样的桌面,他的那个效果,应该怎么弄,谢谢

我在aticonfig里看了很久了。没想到应该怎么弄。清高手帮忙,谢谢
头像
james_xl
帖子: 107
注册时间: 2006-09-17 17:31

#2

帖子 james_xl » 2007-04-29 17:02

很容易可以实现,我用的intel855,你可以参考一下我的xorg.conf
不过我的也有个问题没解决,我的第二显示器是CRT,但是不能设置刷新率,只有60hz,很闪,目前还在寻找解决办法。目前用的是Xinerama方式的双显,就是不能开3d桌面。

代码: 全选

Section "Device"
	Identifier	"i810"
	Driver		"i810"
	BusID		"PCI:0:2:0"

        Option  "DRI"                           "true"
        Option "MergedXinerama" "yes"
        Option  "MergedFB"                      "true"
        Option  "MonitorLayout"                 "CRT,LFP"

        Option  "SecondPosition"                "RightOf"
        Option  "MetaModes"                     "1024x768-1024x768"
        Option  "SecondMonitorHorizSync"        "30-96"
        Option  "SecondMonitorVertRefresh"      "50-85"
        Option	   "UseEdidFreqs" "True"
        Option  "MergedNonRectangular"          "true"
EndSection

Section "Monitor"
	Identifier	"Generic Monitor"
	Option		"DPMS"
	HorizSync	28-51
	VertRefresh	43-60
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"i810"
	Monitor		"Generic Monitor"
	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		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus"	"SendCoreEvents"
	InputDevice     "cursor"	"SendCoreEvents"
	InputDevice     "eraser"	"SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
EndSection

Section "Extensions"
        Option  "Composite" "Enable"
EndSection
Section "DRI"
	Mode	0666
EndSection
回复