Gibt's ne Möglichkeit den Fenstertitel (z.B. Mozilla Firefox - ubuntuusers.de) zu verstecken/auszublenden? Also nur den Titel nicht anzuzeigen, die Leiste brauche ich noch für die Fensterknöpfe...
Grüße, Zak.
|
Anmeldungsdatum: Beiträge: 163 |
Gibt's ne Möglichkeit den Fenstertitel (z.B. Mozilla Firefox - ubuntuusers.de) zu verstecken/auszublenden? Also nur den Titel nicht anzuzeigen, die Leiste brauche ich noch für die Fensterknöpfe... Grüße, Zak. |
|
Anmeldungsdatum: Beiträge: 1827 |
Dazu musst du die jeweilige (Metacity) Theme-Datei anpassen und hier die entspr. Zeilen auskommentieren. Eine globale Einstellung gibt es nicht. |
|
(Themenstarter)
Anmeldungsdatum: Beiträge: 163 |
|
|
Anmeldungsdatum: Beiträge: 1827 |
Kommt aufs Theme an, im Falle Ambiance in der Datei: /usr/share/themes/Ambiance/metacity-1/metacity-theme-1.xml <draw_ops name="draw_title_text_normal"> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)+1"/> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)-1"/> <title color="#333" x="9" y="(((height - title_height) / 2) `max` 0)"/> <title color="#333" x="11" y="(((height - title_height) / 2) `max` 0)"/> <title color="#dfdbd2" x="10" y="(((height - title_height) / 2) `max` 0)"/> </draw_ops> <draw_ops name="draw_title_text_unfocused"> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)+1"/> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)-1"/> <title color="#333" x="9" y="(((height - title_height) / 2) `max` 0)"/> <title color="#333" x="11" y="(((height - title_height) / 2) `max` 0)"/> <title color="#807d78" x="10" y="(((height - title_height) / 2) `max` 0)"/> </draw_ops> ändern zu <draw_ops name="draw_title_text_normal"> <!-- <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)+1"/> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)-1"/> <title color="#333" x="9" y="(((height - title_height) / 2) `max` 0)"/> <title color="#333" x="11" y="(((height - title_height) / 2) `max` 0)"/> <title color="#dfdbd2" x="10" y="(((height - title_height) / 2) `max` 0)"/> --> </draw_ops> <draw_ops name="draw_title_text_unfocused"> <!-- <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)+1"/> <title color="#333" x="10" y="(((height - title_height) / 2) `max` 0)-1"/> <title color="#333" x="9" y="(((height - title_height) / 2) `max` 0)"/> <title color="#333" x="11" y="(((height - title_height) / 2) `max` 0)"/> <title color="#807d78" x="10" y="(((height - title_height) / 2) `max` 0)"/> --> </draw_ops> oder <draw_ops name="draw_title_text_normal"> </draw_ops> <draw_ops name="draw_title_text_unfocused"> </draw_ops> |
|
(Themenstarter)
Anmeldungsdatum: Beiträge: 163 |
Perfekt, dankeschön!!!!! |