为 Natty Narwhal 设置主监视器

为 Natty Narwhal 设置主监视器

我在 Linux 环境中设置主显示器时遇到问题。我尝试按照说明操作这里这似乎对每个人都有效,但对我不起作用。在我的/etc/gnome-settings-daemon/xrandr文件夹中,我monitors.xml也编辑了该文件。它看起来像这样:

<monitors version="1">
  <configuration>
      <clone>no</clone>
      <output name="LVDS">
          <vendor>AUO</vendor>
          <product>0x22ec</product>
          <serial>0x00000000</serial>
          <width>1366</width>
          <height>768</height>
          <rate>60</rate>
          <x>1920</x>
          <y>0</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>no</primary>
      </output>
      <output name="VGA-0">
              <vendor>DEL</vendor>
          <product>0xf022</product>
          <serial>0x30395453</serial>
          <width>1920</width>
          <height>1080</height>
          <rate>60</rate>
          <x>0</x>
          <y>0</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>no</primary>
      </output>
      <output name="HDMI-0">
      </output>
  </configuration>
</monitors>

设置似乎正确,我想要的显示器上的主设置为是,但它似乎不起作用。请帮忙!!

答案1

从终端尝试此命令(可能需要 SUDO):

xrandr --output VGA-0 --primary

有几处错误与在 Unity 中设置主显示器有关。阅读此错误报告的评论可能会对您有所帮助。

https://bugs.launchpad.net/ubuntu/+source/unity/+bug/742544

答案2

我通过以下方式设法使它工作:

xrandr --输出 VGA-0 --primary

其中 VGA-0 是您要设置为主显示器的显示器。使用 xrandr 查看您的显示器

unity --replace &

然后我必须启动监视器(Alt-F2->监视器)并单击“设为默认”。

当我关闭终端时,一切都消失了。我不得不强制重启,当我再次启动时,启动栏终于出现在右侧。

相关内容