使用 xrandr

使用 xrandr

我的显示器的当前设置如下: 当前设置

我希望2nd Sony显示器成为3rd Dell显示器的镜子,而1st Samsung显示器应保留为单独的辅助显示器。
当我尝试将2nd Sony显示更改为Mirror模式时,按钮Apply呈灰色: Grayed_out_button_when_in_mirror_mode

有没有办法让它变成我想要的样子?

答案1

使用 xrandr

可以通过使用以下命令更改屏幕的位置来实现重叠屏幕:

xrandr --output (screen indicator) --pos (x coord)x(y coord)

例子:

xrandr --output DVI-D-0 --pos 0x0
xrandr --output HDMI-0 --pos 0x768
xrandr --output DVI-I-0 --pos 0x768

这导致DVI-D-0屏幕位于顶部和HDMI-0底部DVI-I-0,重叠。

您可以使用以下方法找出屏幕的指示器:

xrandr -q

NVIDIA X 服务器设置

还可以使用 NVIDIA X 服务器设置来实现所需的行为。只需将屏幕的框拖放到彼此上,它们就可以在镜像模式下运行。

在此输入图像描述

相关内容