ターミナルのタイトルでターミネーターと「/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端末タイトル設定用。

おすすめ記事