每次重启时桌面缩放都会重置

每次重启时桌面缩放都会重置

我将桌面缩放比例设置为 200%,然后重启,然后又重置回 100%。
这是 VirtualBox VM,视频类型设置为 VMSVGA。
有什么办法可以解决这个问题吗?
配置信息按要求提供:

user@ubuntuvm:~$ xrandr
Screen 0: minimum 16 x 16, current 3840 x 1968, maximum 32767 x 32767
XWAYLAND0 connected primary 3840x1968+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   3840x1968     59.96*+
   2048x1536     59.95  
   1920x1440     59.97  
   1600x1200     59.87  
   1440x1080     59.99  
   1400x1050     59.98  
   1280x1024     59.89  
   1280x960      59.94  
   1152x864      59.96  
   1024x768      59.92  
   800x600       59.86  
   640x480       59.38  
   320x240       59.52  
   2560x1600     59.99  
   1920x1200     59.88  
   1680x1050     59.95  
   1440x900      59.89  
   1280x800      59.81  
   720x480       59.71  
   640x400       59.95  
   320x200       58.96  
   3200x1800     59.96  
   2880x1620     59.96  
   2560x1440     59.96  
   2048x1152     59.90  
   1920x1080     59.96  
   1600x900      59.95  
   1368x768      59.88  
   1280x720      59.86  
   1024x576      59.90  
   864x486       59.92  
   720x400       59.55  
   640x350       59.77  
user@ubuntuvm:~$ gsettings get org.gnome.desktop.interface scaling-factor
uint32 0
user@ubuntuvm:~$ gsettings get org.gnome.desktop.interface text-scaling-factor
1.0
user@ubuntuvm:~$ gsettings get org.gnome.settings-daemon.plugins.xsettings overrides
@a{sv} {}

答案1

这是初步答复,正在等待您的反馈。请发帖在原帖中当缩放比例为 100% 和 200% 时,以下命令的输出:

$ xrandr
$ gsettings get org.gnome.desktop.interface scaling-factor
$ gsettings get org.gnome.desktop.interface text-scaling-factor
$ gsettings get org.gnome.settings-daemon.plugins.xsettings overrides

在您这样做之前,这里有一个建议。您可以尝试多种操作组合来获得最终结果,所有操作都可通过命令行/配置应用,因此它们可以/应该在每次重新启动时应用,最终通过添加到合适的登录脚本来实现。

  1. xrandr通过( )设置缩放比例--scale,并根据需要进行其他调整。无论xrandr您使用什么命令,都可以在登录时自动应用。请参阅參考參考

  2. 通过 Xorg设置合适的Modeline。例如,我在我的/etc/X11/xorg.conf.d/10-monitor.conf

    Section "Monitor"
        Identifier "LVDS-1"
        Modeline "1344x744_60.00" 80.75  1344 1408 1544 1744  744 747 757 773 -hsync +vsync
        Option "PreferredMode" "1344x744_60.00"
    EndSection
    
  3. 使用gsettings,例如

    $ gsettings set org.gnome.desktop.interface scaling-factor 2
    $ gsettings set org.gnome.desktop.interface text-scaling-factor 1.2
    $ gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gdk/WindowScalingFactor': <2>}"
    

    请注意,您可能需要一个技巧

  4. 其组合,如这里

有关的

  1. 如何在 ubuntu 20.04 中将显示缩放比例增加到 200% 以上?
  2. 监视器缩放无法正常工作
  3. 如何通过命令行设置显示的比例?
  4. 动态更改显示缩放比例
  5. https://forums.developer.nvidia.com/t/persisting-scaled-modeline-to-xorg-conf/50592
  6. https://superuser.com/questions/347437/xorg-how-to-specify-a-non-standard-display-resolution
  7. https://arachnoid.com/modelines/

相关内容