如何降低标题栏高度?

如何降低标题栏高度?

我正在跑步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;
}

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

答案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+ F2r在出现的框中键入内容并点击Enter以重新加载 gnome shell。

你就可以走了:)

答案3

对于最大化的窗口,我可以推荐这个 Gnome Shell 扩展,名为像素节省者经过死神尼克斯。标题栏将消失(这为笔记本用户提供了更多空间),但您仍然可以在黑色活动栏中看到窗口标题。

在此输入图像描述

答案4

根据您的 Linux 发行版和软件包管理器和/或软件包,安装Gnome 调整工具

Gnome 调整工具

选择“字体” 侧面菜单中的选项卡。

然后,设置文字高度为了窗口标题尽可能低的数字。

窗口标题字体选择

笔记:这仅适用于旧版本的 GNOME

相关内容