使用 gconf-editor 将所有窗口标题置于中心?

使用 gconf-editor 将所有窗口标题置于中心?

我想将窗口标题居中,如下所示:

人类

而不是让它们右对齐:

正确的

是否有我可以更改的设置gconf-editor,或者这是由每个主题控制的?

答案1

这确实是主题的一部分。它无法通过 gconf-editor 进行配置。这里是如何编辑主题的 XML 文件的示例。

前:

<draw_ops name="title-text-focused">
   <title color="shade/#000000/0.8" x="0" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="1" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="2" y="(((height - title_height) / 2)+1)"/>

   <title color="#f0f0f0" x="0" y="(height - title_height) / 2"/>

</draw_ops>

<draw_ops name="title-text-unfocused">
   <title color="shade/#000000/0.8" x="0" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="1" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="2" y="(((height - title_height) / 2)+1)"/>

   <title color="#808080" x="0" y="(height - title_height) / 2"/>

</draw_ops>

后:

<draw_ops name="title-text-focused">
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>

   <title color="#f0f0f0" x="((3 `max` (width-title_width)) / 2)" y="(height - title_height) / 2"/>

</draw_ops>

<draw_ops name="title-text-unfocused">
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>
   <title color="shade/#000000/0.8" x="((3 `max` (width-title_width)) / 2)" y="(((height - title_height) / 2)+1)"/>

   <title color="#808080" x="((3 `max` (width-title_width)) / 2)" y="(height - title_height) / 2"/>

</draw_ops>

相关内容