我正在尝试设置一个带有几个选项卡的终端。我想在配置中更改选项卡的标题,以便当我启动终端选项卡时,它们具有正确的标题/名称。有人能帮我吗?
答案1
在 中~/.config/terminator/config
,指定labels
选项卡的父节点。
例如,我有一个双选项卡的默认布局:
[layouts]
[[default]]
[[[child0]]]
order = 0
parent = ""
position = 0:-20
size = 1920, 478
type = Window
[[[child1]]]
labels = Root, None
order = 0
parent = child0
type = Notebook
[[[terminal1]]]
order = 0
parent = child1
profile = root
type = Terminal
[[[terminal2]]]
order = 1
parent = child1
profile = default
type = Terminal
child1
包含实际的选项卡(类型Terminal
),因此我labels
在其中指定:
labels = Root, None
第一个选项卡有固定的标题Root
,而第二个选项卡的标题保持不变(因此我的 shell 和我运行的任何其他命令都可以设置它)。
答案2
不完全相同,但我很难命名我的终端窗口。
为此,您只需title = "whatever"
像这样添加到所需的终端即可:
...
[[[terminal2]]]
title = "whatever"
order = 1
parent = child1
profile = default
type = Terminal
...
我花了一段时间才弄清楚,因为显然你需要完全停止所有终结器进程在对配置文件所做的更改生效之前(现在回想起来这确实有意义)。