web-dev-qa-db-fra.com

Les thèmes de fenêtre ne sont pas appliqués

J'ai téléchargé Tweak Tool changer le thème de la fenêtre ne change rien mais changer de Appearance changements.

Pourquoi en est-il ainsi?

  • Le répertoire de thème par défaut est-il passé de /usr/share/themes?
  • L'outil Tweak ne fonctionne pas pour Unity?
  • Comment installer de nouveaux thèmes (metacity, gtk3) téléchargés depuis gnome-look.org?
1
Deepen

En 14.04, Ubuntu a cessé d'utiliser metacity pour dessiner les fenêtres, et maintenant il est intégré avec le code gtk css (situé dans [theme] /gtk-3.0). Vous devez trouver un thème qui prend en charge les fenêtres Unity 14.04.

Voici un exemple du thème 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);
}

Vous pouvez coller cela dans le fichier gtk.css de votre thème et Tweak comme vous le souhaitez.

2
Jesse