降低 Gnome 3.19+ 中标题栏/头栏的高度及其角半径

降低 Gnome 3.19+ 中标题栏/头栏的高度及其角半径

是否有一个条目可以gnome-shell.css控制大多数窗口的“标题栏”(如果我使用正确的术语)的角半径?

如图所示

“标题栏”角半径的示例

我想减小圆角半径,因为我减少了标题栏的高度。现在圆角看起来相当丑陋(我个人不喜欢圆角)。

我检查了几乎所有条目,但仍然没有找到。有人有想法吗?

答案1

我找到了解决方案。可以通过在 中添加配置来实现~/.config/gtk-3.0/gtk.css:条目border-radius是减少圆角半径;其他条目是减少标题栏的高度(我猜大多数人在 gnome 3.18+ 中都会遇到这种情况,因为没有 .xml 可供调整)。

/* Locate in "~/.config/gtk-3.0/" to decrease title bar in gnome 3 */
/* INFO: valid for Gnome 3.19+ */


/* shrink headebars */
headerbar {
    min-height: 28px;
    border-radius: 2px;  /* remove the rounded corners*/
}

headerbar entry,
headerbar spinbutton,
headerbar button,
headerbar separator {
    margin-top: 1px;
    margin-bottom: 1px;
}

/* shrink ssd titlebars */
.default-decoration {
    min-height: 0; /* let the entry and button drive the titlebar size */ 
}

.default-decoration .titlebutton {
    min-height: 16px; /* tweak these two props to reduce button size */
    min-width: 16px;
    border-radius: 1px;
}

相关内容