我如何运行此命令,使其在计算机启动时将统一从一个屏幕转移到另一个屏幕?
xrandr --output VGA1 --primary
我尝试了这篇文章中的建议,但没有效果:https://superuser.com/questions/685471/how-can-i-run-a-command-after-boot
答案1
最简单的方法是从 dash 打开“自动启动应用程序”并在那里添加此命令。
如果不起作用,请尝试将其添加为
sleep 10;xrandr --output VGA1 --primary
另一种方法是将其添加到 /etc/lightdm/lightdm.conf 的 [SeatDefaults] 部分,如下所示
display-setup-script=xrandr --output VGA1 --primary
我不能 100% 确定它能否在 lightdm 中作为命令运行。它也可以作为脚本运行。
display.sh
您可以创建包含此内容的文本文件
#!/bin/sh
display-setup-script=xrandr --output VGA1 --primary
跑步chmod +x display.sh
然后添加到 lightdm.conf
display-setup-script=<path_to_display.sh>