Gnome 3.18, CSS değiştirerek tüm pencereleri başlık çubuğu yüksekliğini değiştirmek mümkün ~/.config/gtk-3.0/gtk.css
göre Gnome 3 / GTK + 3 başlıktaki bar yüksekliği azaltmak .
.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;
}
Gnome 3.20'de, artık Nautilus (Dosyalar), Ayarlar, Fotoğraflar, Kişiler, vb. Gibi bir başlık / CSD (başlık çubuğunda cüceye özgü düğmeler) bulunan pencereler için geçerli görünmüyor. Gnome-terminal ve gVim gibi diğer uygulamalar için. Gnome 3.20'deki Nautilus gibi cüce programlarda başlık çubuğunun yüksekliğini nasıl azaltabilirim?
Güncelleştirme
Ayrıca bu reddit iş parçacığında önerilenleri de denedim . İkisini de window.ssd
ve .ssd
sadece denedim , zar yok. Bu çalışır, daha fazla ayrıntı için gönderdiğim cevaba bakın.
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;
}
ve
/* 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;
}