双屏,xrandr:获取视频设备的名称

双屏,xrandr:获取视频设备的名称

我一直在尝试使用我的笔记本电脑扩展坞配置双屏xrandr

经过 Google 和 SU 的一些搜索,我已成功:

xrandr --output LVDS --pos 1680x0

这将使我的笔记本电脑屏幕(LVDS)的尺寸刚好与台式机屏幕的尺寸相符。

现在,如果我想把它放在左边,我必须使用这种符号:

xrandr --output LVDS --left-of MY_DESKTOP_SCREEN

当然,没有MY_DESKTOP_SCREEN设备所以我得到:

xrandr: cannot find output "MY_DESKTOP_SCREEN"

如何查找或配置我的视频设备的名称?

答案1

该网站有帮助,因此我输入:

xrandr -q

q 代表查询,其结果为:

Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 2960 x 1050
VGA connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
   1680x1050      60.0*+   59.9
   1280x1024      75.0     59.9
   1280x960       59.9
   1152x864       75.0     74.8
   1024x768       75.1     70.1     60.0
   832x624        74.6
   800x600        72.2     75.0     60.3     56.2
   640x480        75.0     72.8     66.7     60.0
   720x400        70.1
LVDS connected 1280x800+0+0 (normal left inverted right x axis y axis) 331mm x 207mm
   1280x800       60.2*+   60.0     50.0
   1280x768       60.0
   1024x768       60.0
   800x600        60.3
   640x480        59.9
TV disconnected (normal left inverted right x axis y axis)

现在我能:

xrandr --output LVDS --left-of VGA

和:

奇迹发生了:

相关内容