GNOME + Wayland 中的分数缩放超过 200%

GNOME + Wayland 中的分数缩放超过 200%

我已经在 Arch 中的 GNOME 3.38 + Wayland 上成功启用了分数缩放,如下所示:

https://wiki.archlinux.org/index.php/HiDPI#Wayland

然而,在 gnome 控制中心中,它现在只显示 100% 125% 150% 175% 和 200%,而对于我的屏幕来说,最佳设置是 250%(例如,我可以在 Windows 10 中设置)。如何在 gnome 控制中心启用高于 200% 的值或手动设置?

答案1

您可以用来dconf-editor执行此操作。

  1. 启动dconf-editor应用程序
  2. 导航到 /org/gnome/desktop/interface/
  3. 打开缩放因子并出现一个对话框。
  4. 您现在可以在自定义值字段手动设置整数值,例如 100%、150%、250%...比率。

在此输入图像描述

答案2

您可以使用设定命令修改缩放因子设置org.gnome.desktop.interface架构。

# Set the scaling factor to 2.5 (250%)
gsettings set org.gnome.desktop.interface scaling-factor 2.5

如果要为所有用户设置缩放因子,可以使用dconf命令而不是 gsettings。例如:

# Set the scaling factor to 2.5 (250%) for all users
dconf write /org/gnome/desktop/interface/scaling-factor 2.5

请注意,您可能需要注销并重新登录以使更改生效。

或者,您可以使用兰德尔命令手动设置缩放因子。例如:

# Set the scaling factor to 2.5 (250%) for the eDP1 display
xrandr --output eDP1 --scale 2.5x2.5

相关内容