这里如何增加 Windows 上的调整大小边距?/usr/share/themes/Ambiance/metacity-1/metacity-theme-1.xml
它说在属性中编辑
<distance name="left_width" value="1"/>
<distance name="right_width" value="1"/>
<distance name="bottom_height" value="1"/>
嗯,有三个框架具有这些属性,其默认值是:
<frame_geometry name="frame_geometry_normal" title_scale="medium" rounded_top_left="true" rounded_top_right="true" rounded_bottom_left="false" rounded_bottom_right="false">
<distance name="left_width" value="1"/>
<distance name="right_width" value="1"/>
<distance name="bottom_height" value="1"/>
</frame_geometry>
<frame_geometry name="geometry_maximized" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false">
<distance name="left_width" value="0"/>
<distance name="right_width" value="0"/>
<distance name="bottom_height" value="0"/>
</frame_geometry>
<frame_geometry name="border" has_title="false">
<distance name="left_width" value="3"/>
<distance name="right_width" value="3"/>
<distance name="bottom_height" value="3"/>
</frame_geometry>
我已经将这三个值全部改为荒谬的值,但没有明显效果:
<frame_geometry name="frame_geometry_normal" title_scale="medium" rounded_top_left="true" rounded_top_right="true" rounded_bottom_left="false" rounded_bottom_right="false">
<distance name="left_width" value="100"/>
<distance name="right_width" value="100"/>
<distance name="bottom_height" value="100"/>
</frame_geometry>
<frame_geometry name="geometry_maximized" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false">
<distance name="left_width" value="100"/>
<distance name="right_width" value="100"/>
<distance name="bottom_height" value="100"/>
</frame_geometry>
<frame_geometry name="border" has_title="false">
<distance name="left_width" value="200"/>
<distance name="right_width" value="200"/>
<distance name="bottom_height" value="200"/>
</frame_geometry>
并在更改之间重新启动。
我遗漏了什么?(以及如何在不重启的情况下实现更改?)
答案1
您需要编辑/usr/share/themes/Ambiance/gtk-3.0/apps/unity.css
文件。找到-UnityDecoration-input-extents
行并更改10px
为更大的内容。
如果您有 gtk-3.20 文件夹,则需要编辑/usr/share/themes/Ambiance/gtk-3.20/apps/unity.css
文件。以防您更新您的 ubuntu 版本。