在gnome 3 / gtk + 3中降低标题栏的高度


Answers:


21

在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;
}

通过https://ogbe.net/blog/gnome_titles.html


我相信第20行缺少分号padding: 0px
Troy Folger

2
太棒了!也适用于仿生。只需将3px值更改为1px,就可以了。
贾斯汀

对我来说,这导致最右边的窗口按钮挤在一起。为了解决这个问题,我必须简单地将13和14行(margin-topmargin-bottom)替换margin: 0px;(这意味着所有四个margin-*方向)。
brandones

1
我还必须添加padding-right: 6px;31行,以便在窗口标题栏的侧面和“关闭窗口” X按钮之间放置一些填充。
brandones

在@brandones行之后添加类似的内容,以免padding-left: 6px某些应用程序中的图标被压到边缘。
克里斯蒂安·赫伦茨

11

要减小标题栏的大小,只需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+ F2r在出现的框中键入内容,然后单击Enter以重新加载gnome shell。

而且你很好:)


4
在Gnome 3.20中,这似乎不再适用于gnome应用程序,请在此处查看我的问题。关于如何修改css以应用于gnome程序的任何想法,例如3.20中的Nautilus?
joelostblom '16

2
不再工作了
卢西亚诺

3

对于最大化的窗口,我可以推荐一个由Guy deadalnix称为Pixer Saver的Gnome Shell扩展。标题栏将消失(笔记本用户有更多空间),但是您仍然可以在黑色活动栏中看到窗口标题。

在此处输入图片说明


0

根据您的Linux发行版以及软件包管理器和/或软件包,安装Gnome Tweak Tool

侏儒调整工具

在侧面菜单中选择“ 字体 ”标签。

然后,设置文本高度窗口标题,以尽可能低的数量只要你喜欢。

窗口标题字体选择

注意:这仅适用于旧版本的GNOME


不更改标题栏的大小,仅更改标题栏中的字体大小,所以效果不好。
戴夫·莫滕

这仅适用于GNOME的旧版本。它与3.20之后的版本无关,就像@RobertLu在该答案中提到的那样
ILMostro_7

0
.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 (:
*/

我的桌面 适用于具有gnome-session-flashback的Ubuntu 18.04

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.