如何更改终结器中制表符的设计?

如何更改终结器中制表符的设计?

当我在 Terminator 中打开新标签页时,标签页看起来非常丑陋。如何更改它们的外观?

在 gnome-terminal 中,我可以通过编辑来改变它们的外观$HOME/.config/gtk-3.0/gtk.css,但是对于 terminator 来说这不起作用。

更新: 标签有点厚,背景颜色是白色,所以太显眼了。

答案1

更新:Terminator 也在后台使用 gtk,因此请使用以下命令检查 Terminator 的版本:

terminator -v

如果是版本,0.97则在文件中进行更改,gtk2因为它使用gtk2,并且 Ubuntu 使用gtk3,所以您必须在两个文件中进行更改。

对于主题检查使用:

gsettings get org.gnome.desktop.interface gtk-theme 

然后更改以下内容/usr/share/themes/<YOUR_THEME>/gtk-2.0/gtkrc

style "notebook_bg" {
  bg[NORMAL] = shade (1.02, @bg_color)
  bg[ACTIVE] = shade (0.97, @bg_color)
  fg[ACTIVE] = mix (0.8, @fg_color, shade (0.97, @bg_color))
}

@bg_colorbg[NORMAL]您选择的颜色替换,例如"#F98686"(需要引号)。

要在 gtk3 中进行更改,请打开~/.config/gtk-3.0/gtk.css(如果不存在则创建它):

TerminalWindow .notebook tab:active{
  background-color: @bg_color;
}

保存并重新打开终端。

对于其他更改:

right click on terminator screen --> preferences 

在这里,您可以更改想要更改的终结器外观,如自定义配置文件、布局、插件、颜色等。一旦您添加新配置,它将在下创建配置文件~/.config/terminator/

编辑:为了改变颜色:

preferences --> profiles--> colors 

布局改变:

preferences --> profiles--> Layouts--> Add--> give name --> close

它将创建配置文件,~/.config/terminator/config 使用以下命令打开此文件

gedit ~/.config/terminator/config

在此文件中更改尺寸和其他您想要的内容。您还可以从此文件中更改颜色。

参考 :关联

笔记 :请重新启动应用程序以使更改生效。

答案2

接受的答案似乎相当过时并且不适用于较新的 Ubuntu 版本。

要更改终结器中标签的外观,请查看以下帖子:

https://stackoverflow.com/questions/50082359/terminator-1-91-change-tab-theme-color-using-gtk3-css

以下设置对我有用:

/* ~/.config/gtk-3.0/gtk.css */

.terminator-terminal-window notebook tab {
  background-color: darkgrey;
  padding: 0;
  border: 0;
}
.terminator-terminal-window notebook tab:checked {
  background-image: none;
  background-color: #459cc4;
}
.terminator-terminal-window notebook tab button {
  padding: 0;
}

以下博客展示了更多自定义设置:

http://blog.nabam.net/workstation/2017/09/15/terminator_tabs

相关内容