答案1
我打开了gtk 检查器从终端,我无法从终结器本身打开它。使用 gtk-inspector,我发现添加了以下 css 规则以~/.config/gtk-3.0/gtk.css
删除难看的白色边框。
.terminator-terminal-window notebook header, .terminator-terminal-window stack {
border: none;
}
答案2
这对我来说很管用。在你的~/.config/gtk-3.0/gtk.css
.terminator-terminal-window notebook {
border: none;
}
答案3
这很可能是 gtk 主题的问题。我的 arc-gtk-theme 有这个边框,但其他一些主题没有
答案4
Ubuntu 20.04
我也使用 gtk-inspector 来找到它。注意:我使用 gnome-terminal 启动了 terminator,使用方法如下:GTK_DEBUG=interactive terminator
。它不适用于其他终端。(您还需要先使用 gtk-inspector 激活它
这是我的 gtk.css 配置,用于修复此问题:
.terminator-terminal-window notebook tab {
margin-left: 0px;
margin-right: 0px;
}
.terminator-terminal-window notebook tabs {
padding-left: 0px;
}
我添加了一些我喜欢的花哨东西。这就是我的完整 gtk.css
.terminator-terminal-window notebook tab {
font-size: 13px;
padding: 0;
min-height:0;
border: 0px;
background-color: #111;
color: white;
margin-left: 0px;
margin-right: 0px;
}
.terminator-terminal-window notebook tabs {
padding-left: 0px;
}
.terminator-terminal-window notebook tab:checked {
border: 0px;
font-weight: bold;
color: #ffde33;
background-color: #330;
box-shadow: none;
border-width: 1px;
border-style: outset;
border-color: #550;
}
.terminator-terminal-window notebook tab button{
padding-left: 5px;
padding-right: 5px;
}
.terminator-terminal-window notebook tab button:hover{
background-color: #550;
}