web-dev-qa-db-ja.com

ウィンドウのテーマが適用されない

Tweak Toolをダウンロードしました。ウィンドウのテーマを変更しても何も変更されませんが、Appearanceの変更から変更されます。

なぜですか?

  • デフォルトのテーマディレクトリが/usr/share/themesから変更されましたか?
  • 微調整ツールはUnityでは機能しませんか?
  • Gnome-look.orgからダウンロードした新しい(metacity、gtk3)テーマをインストールする方法
1
Deepen

14.04では、Ubuntuはmetacityを使用してウィンドウを溺死させなくなり、現在はgtk cssコード([theme] /gtk-3.0にあります)と統合されています。 Unity 14.04ウィンドウをサポートするテーマを見つける必要があります。

ズキウイのテーマのサンプルです

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ファイルに貼り付け、好きなようにTweakできます。

2
Jesse