Gnome 3.18에서는 gnome 3 / gtk + 3의 제목 표시 줄 높이 줄이기 에 ~/.config/gtk-3.0/gtk.css
따라 CSS를 변경하여 모든 창의 제목 표시 줄 높이를 변경할 수있었습니다 .
.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에서는 노틸러스 (파일), 설정, 사진, 연락처 등과 같은 헤더 바 / CSD (제목 표시 줄의 그놈 특정 버튼)가있는 창에 더 이상 적용되지 않는 것으로 보입니다. 비틀기는 여전히 제목 표시 줄 높이를 줄입니다. 그놈 터미널 및 gVim과 같은 다른 응용 프로그램의 경우. Gnome 3.20의 Nautilus와 같은 그놈 프로그램에서 제목 표시 줄의 높이를 어떻게 줄입니까?
최신 정보
나는 또한 이 레딧 스레드에서 제안 된 것을 시도했다 . 난 둘 다 시도 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;
}