好问题。回答起来有些棘手,但请尝试一下。
基本答案
实际上,X11中包含一些复位的可能性。您可以在找到它/etc/X11/Xreset
。您可以使用Xreset目录(Xreset.d
)粘贴一个脚本,该脚本在用户注销时自动运行。自述文件:
# Scripts in this directory are executed as root when a user log out from
# a display manager using /etc/X11/Xreset.
# The username of the user logging out is provided in the $USER environment
# variable.
因此,您可以a)在其中添加重置脚本/etc/X11/Xreset.d
,b)将脚本附加到启动器,以设置双外部显示器。这样,您将注销,一切将恢复正常,然后登录到笔记本电脑,点击启动器进行显示,享受生活。
更多信息
您可能需要考虑sudo dpkg-reconfigure -phigh xserver-xorg
重置xserver或(可能更好地看一下注释中建议的答案 Mik)。
一个SuSE家伙写了一篇有关X 的不错的文章。
在解决bug报告有人指出:
管理员可以将脚本拖放到/etc/X11/Xreset.d/中,以便在用户注销后运行。
这是文件的内容:
您可以在自己的系统上找到它。
#!/bin/sh
#
# /etc/X11/Xreset
#
# global Xreset file -- for use by display managers
# $Id: Xsession 967 2005-12-27 07:20:55Z dnusinow $
set -e
PROGNAME=Xreset
SYSSESSIONDIR=/etc/X11/Xreset.d
if [ ! -d "$SYSSESSIONDIR" ]; then
# Nothing to do, exiting
exit 0
fi
# use run-parts to source every file in the session directory; we source
# instead of executing so that the variables and functions defined above
# are available to the scripts, and so that they can pass variables to each
# other
SESSIONFILES=$(run-parts --list $SYSSESSIONDIR)
if [ -n "$SESSIONFILES" ]; then
set +e
for SESSIONFILE in $SESSIONFILES; do
. $SESSIONFILE
done
set -e
fi
exit 0
# vim:set ai et sts=2 sw=2 tw=80:
xrandr
可能很有用。