robot
最新文章(10)
Mqskit 和其它相關工具
CPython 的 GC 二、三事
寫 Mecurial Extension 是件快樂的事!
Mozilla 台灣辨公室徵人啟事
關於 Apple 的兩項專利
core dump 之前的 frame
怎麼發出 beep 聲?
先承認你要找的是奴才吧!
程式碼要清的多乾淨?
FreeBSD 的 Thread-Local Storage 實作
首頁
新編
最新留言
Entries RSS
重要關鍵字(10)
coding (122)
Python (93)
FreeBSD (71)
WEB (61)
URL (48)
hardware (46)
javascript (36)
Linux (34)
blog (30)
C++ (16)
所有關鍵字
新增 URL
雙螢幕 + Xinerama
by thinker
2 Columns
關鍵字:
X Window
FreeBSD
Linux
繼 linkname:[雙螢幕 - Multihead Configuration for Xorg] http://heaven.branda.to/~thinker/GinGin_CGI.py/show_id_doc/242 後, Panasonic R5 已經可以支援兩個 screen 。但這是兩個獨立的 screen ,有各獨立的 window , window 也無法互跨或轉移。 如果想組成電視牆,那該怎麼辨?必需讓一個視窗能跨數個 screen ,個別顯示 window 的部分畫面。 linkname:Xinerama http://en.wikipedia.org/wiki/Xinerama 就是這樣的功能,只需在 xorg.conf 加入一個 section "ServerFlags" 就可以啟動 Xinerama 。 {{{ Section "ServerFlags" Option "Xinerama" "true" EndSection }}} == Panasonic R5/i810 == {{{ Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 Screen 1 "Screen1" RightOf "Screen0" InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" RgbPath "/usr/X11R6/lib/X11/rgb" ModulePath "/usr/X11R6/lib/modules" FontPath "/usr/X11R6/lib/X11/fonts/misc/" FontPath "/usr/X11R6/lib/X11/fonts/TTF/" FontPath "/usr/X11R6/lib/X11/fonts/Type1/" FontPath "/usr/X11R6/lib/X11/fonts/CID/" FontPath "/usr/X11R6/lib/X11/fonts/75dpi/" FontPath "/usr/X11R6/lib/X11/fonts/100dpi/" FontPath "/usr/X11R6/lib/X11/fonts/TTF/" FontPath "/usr/X11R6/lib/X11/fonts/TrueType/" EndSection Section "Module" Load "extmod" Load "glx" Load "dri" Load "dbe" Load "record" Load "xtrap" Load "type1" Load "freetype" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbRules" "xorg" Option "XkbModel" "jp106" Option "XkbLayout" "jp" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "Auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" ### Comment all HorizSync and VertSync values to use DDC: HorizSync 31.5 - 57.0 VertRefresh 50.0 - 90.0 EndSection Section "Monitor" Identifier "Monitor1" VendorName "Monitor Vendor" ModelName "Monitor Model" ### Comment all HorizSync and VertSync values to use DDC: HorizSync 31.5 - 57.0 VertRefresh 50.0 - 90.0 EndSection Section "Device" Option "MonitorLayout" "CRT,LFP" Identifier "Card0" Driver "i810" VendorName "Intel Corporation" BoardName "Mobile Integrated Graphics Controller" BusID "PCI:0:2:0" Screen 0 EndSection Section "Device" Identifier "Card1" Driver "i810" VendorName "Intel Corporation" BoardName "Mobile Integrated Graphics Controller" BusID "PCI:0:2:0" Screen 1 EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Section "Screen" Identifier "Screen1" Device "Card1" Monitor "Monitor1" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Section "ServerFlags" Option "Xinerama" "true" EndSection }}}
最後更新時間: 2007-04-10 12:53:14 CST |
引用
查詢:
COMMENTS:
on 2007-04-10 17:37:58 CST
John
said ..
這個我以前玩過,就是 notebook 本身 lcd 加上外接的螢幕,形成一個超寬的桌面,但不記得用到了 serverflag...?