我正在跑步GNOME 3.18
,我想降低标题栏的高度。
我怎样才能做到呢?
答案1
Gnome 3.20 之后,.header-bar.default-decoration
不起作用。
您可以将以下内容放入~/.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;
}
答案2
要减小标题栏大小,只需css
在此位置创建一个文件:~/.config/gtk-3.0/gtk.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;
}
按ALT+ F2,r在出现的框中键入内容并点击Enter以重新加载 gnome shell。
你就可以走了:)