|
显卡 AMD ATI HD 3450
现在双显示出来了, 可以配上不同的桌面,用"env DISPLAY=:0.1 xterm"能把xterm放到副显示器。但是两个鼠标控制的是同一个指针, 两个键盘往同一个窗口里输入字符。
我想配成一个鼠标在Screen0,另一个在Screen1. 键盘也是
但因为换成HAL, xorg.conf里的InputDevice都删了, 应该怎么配回来?
两个鼠标的驱动分别是什么? 设备又是什么?
键盘呢?
- Section "ServerLayout"
- Identifier "Layout-A"
- Screen 0 "Screen-0" 0 0
- Screen 1 "Screen-1" 0 0 # 这样写对吗?
- EndSection
- Section "Files"
- ...
- EndSection
- Section "Module"
- ...
- EndSection
- Section "ServerFlags"
- Option "DontZap" "false"
- EndSection
- Section "Monitor"
- Identifier "AOC-LCD-on-Screen-0"
- Option "VendorName" "AOC"
- Option "ModelName" "Generic Autodetecting Monitor"
- Option "DPMS" "true"
- EndSection
- Section "Monitor"
- Identifier "Lenovo-LCD-on-Screen-1"
- Option "VendorName" "Lenovo"
- Option "ModelName" "Generic Autodetecting Monitor"
- Option "DPMS" "true"
- EndSection
- Section "Device"
- Identifier "HD3450-0"
- Driver "fglrx"
- #Option "OverlayOnCRTC2" "1" // 这个有什么用?
- BusID "PCI:1:0:0"
- Screen 0
- EndSection
- Section "Device"
- Identifier "HD3450-1"
- Driver "fglrx"
- BusID "PCI:1:0:0"
- Screen 1
- EndSection
- Section "Screen"
- Identifier "Screen-0"
- Device "HD3450-0"
- Monitor "AOC-LCD-on-Screen-0"
- DefaultDepth 24
- SubSection "Display"
- Viewport 0 0
- Depth 24
- Modes "1680x1050"
- EndSubSection
- EndSection
- Section "Screen"
- Identifier "Screen-1"
- Device "HD3450-1"
- Monitor "Lenovo-LCD-on-Screen-1"
- DefaultDepth 24
- SubSection "Display"
- Viewport 0 0
- Depth 24
- Modes "1920x1080"
- EndSubSection
- EndSection
复制代码 |
|