ใน Gnome 3.18 มันเป็นไปได้ที่จะเปลี่ยนความสูงของแถบหัวเรื่องหน้าต่างทั้งหมดโดยการเปลี่ยน CSS ใน~/.config/gtk-3.0/gtk.css
เป็นต่อลดแถบชื่อเรื่องความสูงในคำพังเพย 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;
}
ใน Gnome 3.20 ดูเหมือนว่าจะไม่ใช้กับหน้าต่างที่มี headerbar / CSD (ปุ่มเฉพาะคำพังเพยในแถบชื่อเรื่อง) เช่น Nautilus (ไฟล์), การตั้งค่า, ภาพถ่าย, รายชื่อติดต่อ ฯลฯ การปรับแต่งยังลดความสูงของแถบหัวเรื่อง สำหรับแอปพลิเคชันอื่น ๆ เช่น gnome-terminal และ gVim ฉันจะลดความสูงของแถบหัวเรื่องในโปรแกรมคำพังเช่น Nautilus ใน Gnome 3.20 ได้อย่างไร
ปรับปรุง
ฉันได้ลองสิ่งที่แนะนำในเธรด Redditนี้ ฉันพยายามทั้งสองwindow.ssd
และ.ssd
เท่านั้นไม่มีลูกเต๋า ใช้งานได้ดูคำตอบที่ฉันโพสต์สำหรับรายละเอียดเพิ่มเติม
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;
}
และ
/* 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;
}