gnome3 환경에서, Titlebar는 GTK-3설정에 영향을 받는다.
경로에 ~/.config/gtk-3.0/gtk.css에 아래와 같은 내용을 입력하면 된다.
/* shrink headerbars (don't forget semicolons after each property) */
headerbar {
min-height: 0px;
padding-left: 2px; /* same as childrens vertical margins for nicer proportions */
padding-right: 2px;
background-color: #2d2d2d;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
margin-top: 0px; /* same as headerbar side padding for nicer proportions */
margin-bottom: 0px;
}
/* shrink ssd titlebars */
.default-decoration {
min-height: 0; /* let the entry and button drive the titlebar size */
padding: 0px;
background-color: #2d2d2d;
}
.default-decoration .titlebutton {
min-height: 0px; /* tweak these two props to reduce button size */
min-width: 0px;
}
window.ssd headerbar.titlebar {
padding-top: 3px;
padding-bottom: 3px;
min-height: 0;
}
window.ssd headerbar.titlebar button.titlebutton {
padding-top: 3px;
padding-bottom:3px;
min-height: 0;
}
'OS > Linux' 카테고리의 다른 글
[Linux] rbash - 사용자 명령어 사용 제한 (0) | 2023.07.12 |
---|---|
[CentOS] Gnome 설정화면을 X11 forwarding 에서 실행하기 (1) | 2020.06.02 |
[CentOS 7] Gnome환경에서 ssh를 이용하여 Display 항상 켜기로 설정 (0) | 2020.06.02 |
CentOS + QTCreator 환경에서 Distcc 빌드 설정하기 (0) | 2020.04.08 |
[CentOS] 최신 버전의 Git으로 업데이트 하기 (0) | 2019.07.17 |
[CentOS] SWAP 빈도 조절하여 성능 개선 (0) | 2019.06.24 |
[CentOS 7] Multicast Packet을 Loopback으로 송/수신 (0) | 2019.06.21 |
umask를 이용해서 Default Permission 주기 (0) | 2014.08.29 |