在 Debian Jessie 中启动时运行 xrandr 命令(使用 Gnome 3.14.4)

在 Debian Jessie 中启动时运行 xrandr 命令(使用 Gnome 3.14.4)

我尝试在启动后运行此脚本,以便可以立即使用监视器。如果我在 Gnome 启动后手动运行它,它会起作用。但是~/.xinitrc按照许多页面上的说明输入命令却不起作用。我也尝试输入它,/etc/init.d但也没有用。我需要把这个脚本放在哪里才能正常运行?

#! /bin/sh
xrandr --listproviders | grep "number : 2"
if [ $? = 0 ]; then
        xrandr --setprovideroutputsource 1 0
        xrandr | grep VGA-1-1 | grep "connected"
        if [ $? = 0 ]; then
                xrandr | grep VGA1 | grep "connected"
                if [ $? = 0 ]; then
                        xrandr --output VGA-1-1 --mode 1280x1024 --rate     75 --right-of VGA1
                fi
        fi
fi

答案1

Debian Jessie 上的 ~/.xsessionrc 就是您正在寻找的。

相关内容