内置显示器的旋转/反射会禁用外接显示器

内置显示器的旋转/反射会禁用外接显示器

我有一台笔记本电脑(Dell Latitude 系列),通过 HDMI 连接外接显示器,运行 Ubuntu 18.04.04。显卡是 Intel UHD 620。我试图实现笔记本电脑的内置显示器(eDP-1)在 x 轴上反射,而外接显示器(HDMI-1)不反射(用于自动提示设置)。

使用 xrandr,我相信以下内容应该可以工作,但是即使它反映了内置监视器,它也会完全禁用外部监视器(关闭)。

xrandr \
    --output eDP-1 --mode 1920x1080 --pos 0x0 --reflect x \
    --output HDMI-1 --primary --mode 2560x1440 --pos 1920x0 --reflect normal \
    --output DP-1 --off \
    --output HDMI-2 --off \
    --output DP-2 --off

以下变化按预期工作(两个监视器均未反映):

xrandr \
    --output eDP-1 --mode 1920x1080 --pos 0x0 --reflect normal \
    --output HDMI-1 --primary --mode 2560x1440 --pos 1920x0 --reflect normal \
    --output DP-1 --off \
    --output HDMI-2 --off \
    --output DP-2 --off

以下仅反映外部监视器的变化也可正常工作:

xrandr \
    --output eDP-1 --mode 1920x1080 --pos 0x0 --reflect normal \
    --output HDMI-1 --primary --mode 2560x1440 --pos 1920x0 --reflect x \
    --output DP-1 --off \
    --output HDMI-2 --off \
    --output DP-2 --off

因此,总而言之,我可以反映每个显示器,但是如果我反映内置显示器,则外接显示器会关闭。这似乎与这个问题,但对此没有提供任何答案。任何建议都将不胜感激 :)

相关内容