Windows Terminal의 Solarised Dark가 초보하기 어려운 것을 개선
6776 단어 WindowsTerminalWindowsPowerShell
결론
settings.json을 입력하는 방법은 여기
Windows Terminal이란 무엇입니까?
다음을 settings.json에 넣어
"schemes": [
{
"name": "Solarized Dark - Patched",
"black": "#002831",
"red": "#d11c24",
"green": "#738a05",
"yellow": "#a57706",
"blue": "#2176c7",
"purple": "#c61c6f",
"cyan": "#259286",
"white": "#eae3cb",
"brightBlack": "#475b62",
"brightRed": "#bd3613",
"brightGreen": "#475b62",
"brightYellow": "#536870",
"brightBlue": "#708284",
"brightPurple": "#5956ba",
"brightCyan": "#819090",
"brightWhite": "#fcf4dc",
"background": "#001e27",
"foreground": "#708284"
}
]
사용하고 싶은 녀석(이하는 powershell)의 colorScheme에 조금 전의 name 프로퍼티를 돌진만.
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"colorScheme": "Solarized Dark - Patched"
}
조금 설명
Windows Terminal에는 데포에서 Solarised Dark가 들어 있지만 명령의 옵션이 전혀 보이지 않는다. 예를 들면
node -v
그렇다면, 이런 느낌
이를 깔끔한 Solarised Dark - patch로 바꾸면
이런 식으로, 제대로 읽을 수 있게 된다(개인차가 있을 것 같습니다. 나는 충분했습니다)
출처
이번에 소개한 것은 h tps : // 우뻬도 ws 테르 모두 l 테오메 s. 에서 v/ 에서 복사한 것입니다. 사이트 상단에서 좋아하는 색 구성표를 선택하고 Get themes를 선택하면 클립보드에 들어가므로 그것을 복사하는 것만으로 사용할 수 있어 매우 편리했습니다. 오픈 소스 고맙습니다.
Reference
이 문제에 관하여(Windows Terminal의 Solarised Dark가 초보하기 어려운 것을 개선), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/flat35hd99/items/06d766253eeebdbaca70텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)