あるウィンドウではbashを使用し、別のウィンドウではFishを使用してターミネータを開くことができますか? [コピー]

あるウィンドウではbashを使用し、別のウィンドウではFishを使用してターミネータを開くことができますか? [コピー]

だから私はターミネーター0.98を実行しています。私はFishシェルが好きですが、いくつかの作業ではbash(virtualenvwrapperなど)を使用するのが便利です。これで Terminator を実行すると、2 つのウィンドウが開きます。しかし、私はFishで始まるものとbashで始めたいと思います。可能ですか?可能であれば:どうですか?

の設定ファイルを変更して、カスタムレイアウトでターミネータを起動しました~/.config/terminator/config

設定ファイルのレイアウトセクションでこのコードを使用しました。

[layouts]
  [[default]]
    [[[child0]]]
      fullscreen = False
      last_active_window = True
      maximised = True
      order = 0
      parent = ""
      size = 1280, 985
      type = Window
    [[[child1]]]
      order = 0
      parent = child0
      position = 490
      ratio = 0.5
      type = VPaned

ベストアンサー1

command関連ウィンドウにを追加する必要があります。デフォルトのシェルがある場合は、bashPodを実行してくださいfish

[layouts]
  [[default]]
    [[[child0]]]
      fullscreen = False
      last_active_window = True
      maximised = True
      order = 0
      parent = ""
      size = 1280, 985
      type = Window

    [[[child1]]]
      order = 0
      parent = child0
      command = 'bash'
      position = 490
      ratio = 0.5
      type = VPaned
    [[[child1]]]
      order = 0
      parent = child0
      position = 490
      ratio = 0.5
      type = VPaned

おすすめ記事