我在戴尔Dimension M6500上运行Ubuntu 14.04 LTS,并尝试自动定位2个显示器。
显卡:Quadro FX 2800MNVIDIA Driver Version:331.38我把这行
xrandr—输出DP-0—LVDS-0左
在各种文件中作为命令行工作:.profile, .xsession, .xinitrc,/etc/x11/xsession .d/45custom_xrandr-settings
设置了一个sleep 2,试图通过批处理启动
行xrand -q>> xrand .logxrandr——输出DP-0——lvds -0左边&Xrandr -q>> Xrandr .log
在.profile文件中工作,并显示重新定位发生了,但在我看到任何东西之前又返回了!
有什么想法吗?
我知道这有点老了,但是我在寻找解决方案的时候发现了这篇文章,所以我想我应该帮忙。
在/usr/bin/
中创建一个名为setup_monitors
的脚本,并执行sudo chmod +x /usr/bin/setup_monitors
添加到setup_monitors
#!/bin/sh
# you might want to uncomment the following line or
# something like it as well
# xrandr --output DP-0 --mode 1920x1080 --noprimary --pos 1920x0
xrandr --output DP-0 --left-of LVDS-0
然后在/etc/lightdm/lightdm.conf
中添加以下内容:
display-setup-script=/usr/bin/setup_monitors
重新启动桌面环境(注销/重启计算机),应该可以工作了