更改终止符和终端标题中的“/bin/bash”?

更改终止符和终端标题中的“/bin/bash”?

我想将终止符和终端的标题中的文本更改/bin/bash为。root@kali我该怎么做?

在此输入图像描述

答案1

要生成配置文件,请运行:

terminator -l init;

编辑config文件:

nano ~/.config/terminator/config

为窗口/终端添加新标题:e,g:

[global_config]
[keybindings]
[profiles]
  [[default]]
    cursor_color = "#aaaaaa"
[layouts]
  [[default]]
    [[[window0]]]
      type = Window
      parent = ""
      title = "window title here"
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = default
      title = "terminal title here"
      command = ""
[plugins]

替代方法:用于 Ctrl + Alt + w设置窗口标题和 Ctrl + Alt + x设置终端标题。

答案2

在你的 .bash_profile 中执行这个应该可以做到:

echo -n "^[]2;root@kali^G"

注意“^[”是转义符。

相关内容