Linux 上的 Optimus 远非完美,但是使用本机nVidia
驱动程序,我过去遇到的大多数问题都得到了解决,除了一个。
每当我运行全屏应用程序(例如Kodi
某些Steam
游戏)时,位置就会关闭,屏幕要么在 1080p 的 2 个屏幕中间居中,要么在任何显示器上仅显示左半部分。
我认为这是由于我如何使用xrandr
.初始化时sddm
,它运行以下命令:
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --output HDMI-1-1 --mode 1920x1080 --pos 1920x0 --output HDMI-0 --primary --mode 1920x1080 --panning 3840x1080+0+0/0x0+0+0/0/0/-1920/0
然而它工作得很好,你可能会注意到容器是 3x1080p,因为这是因为有 3 个屏幕(全部都是 1080p),禁用我的内部显示器并使用平移,我可以将 2 个显示器的输出移动到彼此相邻的位置。
看来我无法控制全屏行为,无论是在 中KDE
还是通过使用put
.在应用程序设置中,我可以选择在哪个显示器上渲染它,但它无论如何都会在中心渲染。
澄清:
xs on monitor left at 1920/2
ys on monitor left at 1080
xe on monitor right at (1920/2)+1920
ye on monitor right at 1080
说实话,我尝试过很多事情,但在这里我很茫然。我不是 Linux 专家,我已经使用它作为我唯一的操作系统大约 4 年了。
由于 KDE 支持,Wayland
我愿意尝试一下,但是由于过去我在使用 Optimus 时遇到了很多问题,我不愿意尝试它,因为一切都运行得很顺利,而且关于 Optimus / Nvidia / Wayland 兼容性的信息很少。
在做任何像将稳定的显示管理器更换为新的这样激进的事情之前,我可能错过了什么?或者也许是我完全错过了来自终端的用于运行应用程序的一个简单命令。
任何帮助表示赞赏。
附加信息:
xorg.conf、xorg.conf.d 为空。
Section "Module"
Load "modesetting"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "PCI:1:0:0"
Option "AllowEmptyInitialConfiguration"
EndSection
如果需要,请在评论中索取更多信息。
答案1
我用过一些脚本多年来,我们一直致力于xrandr
在 Arch Linux 上建立并排和(目前)T 形桌面。这应该是一个简单的工作来适应并排.sh根据您的需求:
#!/bin/sh
eval `\`dirname -- "$0"\`/monitor_resolutions.sh`
expected_monitors=2
if [ "${monitor_count:-0}" -ne "$expected_monitors" ]
then
echo "$0: Expected ${expected_monitors} monitors; found ${monitor_count:-0}." >&2
exit 1
fi
xrandr \
--output "$monitor1_name" \
--mode ${monitor1_width}x${monitor1_height} \
--rotate normal \
--output "$monitor2_name" \
--mode ${monitor2_width}x${monitor2_height} \
--right-of "$monitor1_name" \
--rotate normal
监视器分辨率.sh帮助脚本:
#!/bin/sh
#
# NAME
# monitor_resolutions.sh - Variables for monitor resolutions
#
# SYNOPSIS
# eval `./monitor_resolutions.sh`
#
# DESCRIPTION
# Prints a set of `eval`-able variable assignments with monitor name,
# width and height for each monitor plus a monitor count.
#
# EXAMPLES
# eval `./monitor_resolutions.sh`
# Assign monitor1_name, monitor1_width, monitor1_height,
# monitor2_name, etc. and monitor_count variables.
#
# BUGS
# https://github.com/l0b0/tilde/issues
#
# COPYRIGHT
# Copyright (C) 2013-2014 Victor Engmark
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
monitor_info() {
xrandr --query | tee ~/.xsession-xrandr-query
}
monitor_resolutions() {
# Input: XRandR monitor info
# Output: Lines with monitor name, width and height separated by spaces
while read -r word1 word2 _
do
if [ "${word2:-}" = 'connected' ]
then
IFS='xi ' read -r width height _
printf '%s %d %d\n' "$word1" "$width" "$height"
fi
done
}
monitor_assignments() {
# Input: Lines with monitor name, width and height separated by spaces
# Output: eval-able variable assignments for each input value, including a final count
count=0
while read monitor width height
do
count=$(($count + 1))
printf "monitor%d_name='%s'\n" "$count" "$monitor"
printf "monitor%d_width='%s'\n" "$count" "$width"
printf "monitor%d_height='%s'\n" "$count" "$height"
done
printf "monitor_count='%s'\n" "$count"
}
monitor_info | monitor_resolutions | monitor_assignments
side-by-side.sh
在您本地运行.xprofile
或者在启动 X 后,您应该就可以开始了。
此设置适用于 AMD 和 nVidia 显卡,使用专有和开源驱动程序。我不认为我曾经尝试过使用 Wayland 而不是 X,但我怀疑如果xrandr
与 Wayland 一起工作的话应该可以工作。