그래서 저는 터미네이터 0.98을 실행하고 있습니다. 저는 Fish 쉘을 좋아하지만 일부 작업에서는 bash(virtualenvwrapper 등)를 사용하는 것이 편리합니다. 이제 Terminator를 실행하면 두 개의 창이 열립니다. 하지만 저는 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
관련 창에 를 추가해야 합니다 . 기본 쉘이 bash
이면 Pod를 실행하세요 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