除了在“显示设置”对话框中,是否可以将显示比例缩放设置回默认值?


9

我从显示菜单缩放了UI。现在它太大了,我无法通过滑块重置它。

有什么想法可以在不访问设置菜单的情况下将Unity中的缩放比例更改回默认值吗?

我试过了

dconf reset -f /org/unity 

没有运气。

Answers:


11

问题似乎是您无法看到/控制“显示设置”的下部。有一种解决方法可将下部移动到顶部。为此,转到系统设置->显示,然后右键单击顶部的窗口栏,然后单击“移动”。单击“移动”后不要移动鼠标,否则键盘不用于移动,只有鼠标具有移动窗口的控件。

右键单击移动

然后使用键盘将窗口移至顶部,从而在拖动鼠标将标尺重置为1的位置向下方显示。请记住,单击“应用”使设置保持不变,然后单击“保留此配置”。 。

您也可以按住该Alt键,然后单击窗口的任何区域以将其向上移动,直到看到滑块为止。


3

这也为我工作:

gsettings set com.ubuntu.user-interface scale-factor "{'eDP1': 10}"
gsettings reset org.gnome.desktop.interface scaling-factor # same as '1.0'
gsettings set com.canonical.Unity.Interface text-scale-factor 1.25
gsettings set org.gnome.desktop.interface text-scaling-factor 1.25

3

在Ubuntu GNOME中(我假设其他运行香草GNOME3的发行版),我发现使用

gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "[{'Gdk/WindowScalingFactor', <2>}]"

结合已经提到的

gsettings set org.gnome.desktop.interface scaling-factor 2

会获得比后者更一致的结果。

当您在中更改“ Windows / HiDPI / Window Scaling”值时,这也是受影响的设置gnome-tweak-tool。为了将来参考,我在GNOME Wiki的Hi-DPI页面上找到了该命令。


1

我不知道缩放是否使用该xrandr机制。如果是,请在终端中发出:

xrandr --output LVDS1 --scale 1x1 

将LSVD1替换为通过运行获得的活动显示的名称xrandr --current

其他答案中的更多信息


0

这为我工作:

gsettings set com.ubuntu.user-interface scale-factor "{'eDP1': 10}"

还有这个:

gsettings reset org.gnome.desktop.interface scaling-factor # same as '1.0'
gsettings set com.canonical.Unity.Interface text-scale-factor 1.25
gsettings set org.gnome.desktop.interface text-scaling-factor 1.25

我在https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1310316中找到了这些。


0

这救了我,因此我可以再次使用“显示”控制面板:

gsettings reset com.ubuntu.user-interface scale-factor

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.