Answers:
在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;
}
3px
值更改为1px
,就可以了。
margin-top
,margin-bottom
)替换margin: 0px;
(这意味着所有四个margin-*
方向)。
padding-right: 6px;
31行,以便在窗口标题栏的侧面和“关闭窗口” X按钮之间放置一些填充。
padding-left: 6px
某些应用程序中的图标被压到边缘。
要减小标题栏的大小,只需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。
而且你很好:)
对于最大化的窗口,我可以推荐一个由Guy deadalnix称为Pixer Saver的Gnome Shell扩展。标题栏将消失(笔记本用户有更多空间),但是您仍然可以在黑色活动栏中看到窗口标题。
根据您的Linux发行版以及软件包管理器和/或软件包,安装Gnome Tweak Tool。
在侧面菜单中选择“ 字体 ”标签。
然后,设置文本高度的窗口标题,以尽可能低的数量只要你喜欢。
注意:这仅适用于旧版本的GNOME
.titlebar, headerbar {
min-height: 0px;
padding: 0px;
margin: 0px;
}
headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
min-height: 0px;
padding: 0px;
margin: 1px;
}
/*
more or less normal
write this in ~\.config\gtk-3.0\gtk.css
use slashes instead of backslashes
slashes just terrifyin my nano (:
*/
padding: 0px