답변:
혼란스러워서 알아 냈습니다.
편집 /usr/share/themes/Ambiance/gtk-3.0/apps/gnome-terminal.css
및 추가 :
TerminalWindow .notebook {
padding: 0;
border-width: 0;
}
https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/694468 에서 발견 된 버그
일반적으로 원본 파일을 수정하지 말고 환경 설정에 따라 값을 무시하는 것이 좋습니다.
아직없는 경우이 경로에서 gtk.css 파일을 작성하거나여십시오.
~/.config/gtk-3.0/gtk.css
다음 코드를 붙여넣고 모든 터미널을 닫고 새로 시작하십시오.
@define-color bg-grey #222;
@define-color active-grey #333;
@define-color border-grey #555;
TerminalWindow .notebook {
border: 0;
padding: 0;
color: #eee;
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab:active {
border: 1px solid @border-grey;
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab {
background-color: shade(@bg-grey, 1);
}
이제는 의도 한대로 테두리를 제거 할뿐만 아니라 어두운 배경에 더 잘 맞고 내 눈은 밝은 회색으로 "상처"됩니다. 탭이 여러 개인 경우 결과는 다음과 같아야합니다. 물론 기본 설정에 따라 색상 변수를 변경하여 사용자 정의 할 수 있습니다.
@topless 및 @jibreel 답변을 기반으로 한 광산.
투명한 배경과 어두운 테마. 대단해
@define-color bg-grey #222;
@define-color active #313131;
TerminalWindow .notebook {
border: 0;
padding: 0;
color: #fff;
background-color: shade(@active, 1);
}
TerminalWindow .notebook tab:active {
background-color: shade(@active,1);
}
TerminalWindow .notebook tab {
border-radius: 0px;
padding: 3px;
background-color: shade(@bg-grey, 1);
}
@topless 감사합니다. 이렇게 보이도록 추가로 편집했습니다. 공백을 피하기 위해 경계 반경을 0으로 설정하십시오.
@define-color bg-grey #222;
@define-color active #300A24;
TerminalWindow .notebook {
border: 0;
padding: 0;
color: #eee;
background-color: shade(@active-grey, 1);
}
TerminalWindow .notebook tab:active {
background-color: shade(@active, 1);
}
TerminalWindow .notebook tab {
border-radius: 0px;
background-color: shade(@bg-grey, 1);
}
다른 테마를 시도하거나 취향에 맞게 분위기를 구성하거나 다음 중 하나를 얻을 수 있습니다 (Ubuntu 소프트웨어 센터에서).