In Gnome 3.18, war es möglich , die titlebar Höhe aller Fenster in durch Ändern der CSS zu ändern , ~/.config/gtk-3.0/gtk.css
wie pro Titelleiste Höhe Reduce in GNOME 3 / gtk + 3 .
.header-bar.default-decoration {
padding-top: 0px;
padding-bottom: 0px;
}
.header-bar.default-decoration .button.titlebutton {
padding-top: 0px;
padding-bottom: 0px;
}
/* No line below the title bar */
.ssd .titlebar {
border-width: 0;
box-shadow: none;
}
In Gnome 3.20 scheint dies nicht mehr für Fenster mit einer Kopfzeile / CSD (gnome-spezifische Schaltflächen in der Titelleiste) wie Nautilus (Dateien), Einstellungen, Fotos, Kontakte usw. zu gelten. Die Optimierung verringert weiterhin die Höhe der Titelleiste für andere anwendungen wie gnome-terminal und gVim. Wie verkleinere ich die Höhe der Titelleiste in Gnome-Programmen wie Nautilus in Gnome 3.20?
Aktualisieren
Ich habe auch versucht, was in diesem reddit Thread vorgeschlagen wird . Ich habe beides probiert window.ssd
und .ssd
nur keine Würfel. Dies funktioniert, siehe die Antwort, die ich für weitere Details gepostet habe
window.ssd headerbar.titlebar {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
window.ssd headerbar.titlebar button.titlebutton {
padding-top: 1px;
padding-bottom: 1px;
min-height: 0;
}
und
/* shrink headebars */
headerbar {
min-height: 38px;
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 2px; /* same as headerbar side padding for nicer proportions */
margin-bottom: 2px;
}
/* shrink ssd titlebars */
.default-decoration {
min-height: 0; /* let the entry and button drive the titlebar size */
padding: 2px
}
.default-decoration .titlebutton {
min-height: 26px; /* tweak these two props to reduce button size */
min-width: 26px;
}