Download

기본 설정

  • 기본적인 터미널 사용과 동일함
  • 단축키 별도로 확인 필요
  • 설정 파일 위치
    • %USER%\AppData\Local\Packages\Microsoft.WindowsTerminal_~~(임의문자인듯)\LocalState\settings.json

SSH 용 프로필 추가 방법

  • 설정 파일 내의 profiles 항목에 추가
  • 폰트가 깨질 경우 기본 폰트를 변경 (D2Coding 등으로)
    • 윈도우에 설치된 폰트여야 하는듯
  • commandline 으로 ssh 실행 추가
  • 추가한 개별 프로필 탭에 아이콘을 표시하고 싶은 경우 `icon` 옵션 추가
  • 참고 : https://gist.github.com/jmyoon4488/a5dab4a0c460d5824da10540c6f6686b
"profiles":
{
  "defaults":
  {
    // Put settings here that you want to apply to all profiles.
    // zsh 사용중 또는 한글이 깨질경우 폰트 변경
    "fontFace": "D2Coding"
  },
  "list":
  [
    {
      // Make changes here to the powershell.exe profile.
      "guid": "{RANDOM-UNIQUE-GUID}",
      "name": "Windows PowerShell",
      "commandline": "powershell.exe",
      "hidden": false
    },
    {
      // Make changes here to the cmd.exe profile.
      "guid": "{RANDOM-UNIQUE-GUID}",
      "name": "명령 프롬프트",
      "commandline": "cmd.exe",
      "hidden": false
    },
    ......
    {
      "guid": "{RANDOM-UNIQUE-GUID}",
      "hidden": false,
      "name": "for SSH",
      "icon": "{local image path or image url}",
      "commandline": "wsl ssh user@example.com"
    }
  ]
}

 

+ Recent posts