Answers:
您现在可以。
打开“显示”首选项,然后选择在一个显示器上启动启动器还是在所有显示器上选择启动器。
该对话框还允许打开或关闭显示器之间的粘滞边缘(即鼠标减速)。
放慢速度是一项功能,可以在将其设置为自动隐藏时使用启动器。我认为这是在启动器设置为始终可见时使用的错误。我已经在Launchpad.net上报告了该错误,该错误已归档,您可能希望对其进行设置以影响您。您可以在这里找到它:https : //bugs.launchpad.net/ubuntu/+source/unity/+bug/945847
同时,您可以使用/apps/compiz-1/plugins/unityshell/screen0/options/overcome_pressure
和/apps/compiz-1/plugins/unityshell/screen0/options/stop_velocity
在gconf-editor中自行配置
您还可以在CCSM(Compiz Config设置管理器)的Unity Plugin(实验性)标签中配置这些参数
/apps/compiz-1/plugins/unityshell/screen0/options/overcom_pressure=1
为了能够从一个屏幕完美地传递到另一个屏幕,并且/apps/compiz-1/plugins/unityshell/screen0/options/stop_velocity=20
仍然使访问左侧屏幕上的隐藏启动器成为可能。
num_launchers
设置为1 的选项将仅在主屏幕上显示启动器。
我刚刚在gconf-editor中找到了一个设置,该设置可让您将启动器设置为仅主桌面:/apps/compiz-1/plugins/unityshell/screen0/options/num_launchers
。如果将其设置为1,则Unity启动器将仅显示在主桌面上。如果将其设置为0,则启动器将在所有桌面上可用。
除了此设置外,我还设置了克服压力(/apps/compiz-1/plugins/unityshell/screen0/options/overcom_pressure=1
)和停止速度(/apps/compiz-1/plugins/unityshell/screen0/options/stop_velocity=20
)。
com/canonical/unity-2d/launcher/only-one-launcher
我解决了使用分散。输入终端:
sudo apt-get install disper
使用PaŭloEbermann提出的方法或nvidia-settings或任何适合您的方法解决问题后,输入终端:
disper --export < /path-to-my-file/my-disper-file.metamode
my-file.metamode如下:
backend: nvidia
associated displays: DFP-0, DFP-1
metamode: DFP-0: 1366x768 @1366x768 +1920+312, DFP-1: 1920x1080 @1920x1080 +0+0
scaling: stretched, stretched
xinerama info order: DFP-1, DFP-0
第三行考虑了具有不同高度的两个屏幕的特定位置。您的情况可能更简单。您可以尝试创建适合您的配置的文件(不使用其他方法+分散--export)。重要的是第二行和最后一行中屏幕的顺序。
您可以使用脚本并使它在启动时运行:
#!/bin/sh
#Auto switch single/extend display with disper on Multiple Monitor.
lines=$(disper -l | wc -l)
display_count=$((lines / 2))
if [ $display_count -eq "1" ]; then
disper -s
else
disper --import < /path-to-my-file/my-disper-file.metamode
fi
它可以与我的nvidia显卡一起使用(精确和定量)。
希望能帮助到你。
我从上面尝试了组合设置:
/apps/compiz-1/plugins/unityshell/screen0/options/num_launchers=1
/apps/compiz-1/plugins/unityshell/screen0/options/overcom_pressure=1
/apps/compiz-1/plugins/unityshell/screen0/options/stop_velocity=20
这对我来说最成功。启动器仅出现在主屏幕上,鼠标毫不犹豫地从一个屏幕移动到另一个屏幕。但是,我发现如果不使用超级键,其余启动器将无法显示。可以通过设置以下内容来纠正此问题:
/apps/compiz-1/plugins/unityshell/screen0/options/reveal_pressure=1
顺便说一句,这是NVidia驱动程序。