터미네이터가 기본 프로필로 열리지 않습니다

터미네이터가 기본 프로필로 열리지 않습니다

아래는 내 Terminator프로필입니다. 나는 항상 가벼운 프로필로 모든 인클로저와 창을 열기를 원합니다.

내 기억이 맞다면 아래 구성을 사용하면 기본적으로 라이트 프로필로 열리겠지만 그렇지 않습니다!

기본적으로 "라이트" 프로필을 사용하도록 하려면 어떻게 해야 합니까?

[global_config]
[keybindings]
  new_tab = <Ctrl>n
  next_tab = <Ctrl>Right
  split_vert = <Ctrl>v
  split_horiz = <Ctrl>h
  prev_tab = <Ctrl>Left
[profiles]
  [[light]]
    palette = "#073642:#d30102:#859900:#b58900:#6c71c4:#d33682:#2aa198:#839496:#586e75:#cb4b16:#859900:#b58900:#268bd2:#dc322f:#2aa198:#93a1a1"
    use_system_font = False
    cursor_color = "#002b36"
    foreground_color = "#002b36"
    show_titlebar = False
    background_color = "#eee8d5"
  [[dark]]
    palette = "#073642:#d30102:#859900:#b58900:#6c71c4:#d33682:#2aa198:#839496:#586e75:#cb4b16:#859900:#b58900:#268bd2:#dc322f:#2aa198:#93a1a1"
    use_system_font = False
    cursor_color = "#eee8d5"
    foreground_color = "#eee8d5"
    show_titlebar = False
    background_color = "#002b36"
[layouts]
    [[default]]
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = light
    [[[window0]]]
      profile = light
      type = Window
      parent = ""
[plugins]

답변1


terminator -p light
또는 다음과 같은 터미네이터를 실행해야 합니다.
terminator --profile=light

더 쉬운 방법은 다음과 같이 Bash/Zsh 별칭을 만드는 것입니다.
alias terminator="terminator --profile=light"

답변2

~에서문서

새 터미널에 대한 구성 파일 재사용(기본값: 꺼짐)

When creating a new terminal with splitting or new tabs, 
if this is enabled, then the profile from the previously 
focussed terminal will also be used for the new one.

여기에 이미지 설명을 입력하세요.

답변3

레이아웃에는 프로필 선택이 포함되어 있으므로 종료자를 실행할 수 있습니다.

terminator -l child1

이 작업을 원하지 않으면 "기본" 레이아웃에서 기본 프로필을 설정해야 합니다.

[layouts]
    [[default]]
      type = Terminal
      parent = window0
      profile = light

관련 정보