我正在使用 19.04 中针对高 DPI 显示器的新分数缩放功能。它运行良好,我非常喜欢它。有一件事让我有点恼火。每次我重新启动计算机时,缩放系数都会重置为 1.0。我每次都必须在系统设置中调整它。有没有办法让缩放永久生效?
操作系统:Ubuntu 19.04 x86_64
Gnome:3.32.0
显示器 1:3840 x 2160,27 英寸
显示器 2:1920 x 1080,24 英寸
GPU:NVIDIA GeForce GTX 960
答案1
我能够在 20.04 中通过 Eero Kaan 指南中的 gnome 设置在以下位置执行此操作:https://kaanlabs.com/ubuntu-set-scaling-factor-to-200-percent/。
打开 Gnome XML 配置
sudo vim /usr/share/glib-2.0/schemas/org.gnome.desktop.interface.gschema.xml
找到包含“displays”的行
更改键名“scaling-factor”中的默认行,它看起来应该类似于:
<key name="scaling-factor" type="u">
<default>0</default>
<summary>Window scaling factor</summary>
<description>
Integer factor used to scale windows by. For use on high-dpi screens.
0 means pick automatically based on monitor.
</description>
</key>
更改<default>0</default>
为<default>2</default>
并保存。
应用更改
sudo glib-compile-schemas /usr/share/glib-2.0/schemas