窗口主题未应用

窗口主题未应用

我下载了Tweak Tool更改窗口主题并没有改变任何东西,只是从Appearance变化中改变。

为什么会这样?

  • 默认主题目录是否已从 更改/usr/share/themes
  • 调整工具不适用于 Unity 吗?
  • 如何安装从 gnome-look.org 下载的新主题(metacity、gtk3)?

答案1

在 14.04 版中,Ubuntu 停止使用 metacity 绘制窗口,现在它与 gtk css 代码集成(位于 [theme]/gtk-3.0)。您必须找到一个支持 Unity 14.04 窗口的主题。

以下是 Zukiwi 主题的一个示例

UnityDecoration.top {
    border: 0px solid shade (@theme_bg_color, 0.5);
    border-bottom-width: 0;
    border-radius: 6px 6px 0 0; /* Corner radius, only the top ones should be */
    padding: 1px 8px 0 8px; /* This padding will be applied to the content of the top layout */
    background-color: @theme_bg_color; /* Decoration background */
    background-image: linear-gradient(to bottom,
        @wm_bg_a,
        @wm_bg_b);
    color: @theme_fg_color; /* The foreground color will be used to paint the text */
    text-shadow: 0 1px @wm_title_shadow;
    box-shadow: inset 0 1px alpha(@theme_base_color, 0.6);
}

您可以将其粘贴到主题的 gtk.css 文件中并根据需要进行调整。

相关内容