我的显示配置保持如下:
然而,每次重启后,它都会重置为:
如何让它持久呢?
我的xrandr
输出:
Screen 0: minimum 8 x 8, current 4920 x 1920, maximum 32767 x 32767
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
1920x1080 60.0*+ 59.9 48.0
1680x1050 60.0 59.9
1600x1024 60.2
1400x1050 60.0
1600x900 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1368x768 60.0
1360x768 59.8 60.0
1152x864 60.0
1280x720 60.0
1024x768 60.0
1024x576 60.0
960x540 60.0
800x600 60.3 56.2
864x486 60.0
640x480 59.9
720x405 60.0
640x360 60.0
DP1 disconnected (normal left inverted right x axis y axis)
DP1-1 disconnected (normal left inverted right x axis y axis)
DP1-2 disconnected (normal left inverted right x axis y axis)
DP1-3 connected primary 1080x1920+1920+0 left (normal left inverted right x axis y axis) 477mm x 268mm
1920x1080 60.0*+
1680x1050 60.0
1600x900 60.0
1280x1024 75.0 60.0
1280x800 59.8
1152x864 75.0
1280x720 60.0
1024x768 75.1 60.0
832x624 74.6
800x600 75.0 60.3
640x480 75.0 60.0
720x400 70.1
HDMI1 connected 1920x1080+3000+0 (normal left inverted right x axis y axis) 477mm x 268mm
1920x1080 60.0*+
1680x1050 59.9
1600x900 60.0
1280x1024 75.0 60.0
1280x800 59.9
1152x864 75.0
1280x720 60.0
1024x768 75.1 60.0
832x624 74.6
800x600 75.0 60.3
640x480 75.0 60.0
720x400 70.1
HDMI2 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
答案1
如果我没有打错字的话,命令如下:
xrandr --output eDP1 --pos 0x0 --output DP1-3 --pos 1920x0 --rotate left --output HDMI1 --pos 3000x0
应像图中一样设置屏幕(请先尝试)。要使其在下次登录时保留,请将其添加到启动应用程序:
/bin/bash -c "sleep 15 && xrandr --output eDP1 --pos 0x0 --output DP1-3 --pos 1920x0 --rotate left --output HDMI1 --pos 3000x0"
将其添加到启动应用程序
选择 Dash > 启动应用程序 > 添加。添加上面的(第二个)命令。这sleep 15
是为了确保桌面已完全加载,否则设置可能会中断或被本地程序否决。
解释
使用xrandr
,您可以获取有关当前屏幕设置的信息。在您发布的输出中,三个屏幕似乎已连接(这是我们所期望的 :) ):
eDP1 connected 1920x1080+0+0
DP1-3 connected primary 1080x1920+1920+0
HDMI1 connected 1920x1080+3000+0
这部分:
1920x1080+0+0
为我们提供了有关屏幕分辨率(1920x1080
)及其在整个图片中的位置的信息;组合屏幕布局左上角的坐标(+0+0
,即 x/y)。
随后,我们可以放屏幕的位置,使用以下命令:
xrandr --output eDP1 --pos 0x0
及其旋转:
xrandr --output eDP1 --rotate left
如果我们需要设置具有多个屏幕的布局,我们需要运行命令序列从左到右屏幕。