Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

사용하려면 Windows Store 에서 "terminal" 을 키워드로 검색해서 설치해주면 됩니다.


설정

설정하려면 우측 상단 창에서 아래 화살표 모양을 누르고 메뉴에서 설정  을 클릭하거나 Ctrl + , 키를 누르면 됩니다.

...

Code Block
"list":
        [
            {
                // Make changes here to the powershell.exe profile.
                "acrylicOpacity" : 0.5,
                "background" : "#012456",
                "closeOnExit" : true,
                "colorScheme" : "Campbell",
                "commandline" : "powershell.exe",
                "guid" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
                "icon" : "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
                "name" : "Windows PowerShell",
                "startingDirectory" : "%USERPROFILE%"
            },
            {
                "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
                "hidden": false,
                "name": "Ubuntu",
                "colorScheme" : "Solarized Dark",
                "source": "Windows.Terminal.Wsl",
                "commandline": "wsl.exe ~"
            },


Theme

colorScheme 키워드에 사용할 테마를 지정해 줄수 있으며 저는 Power shell 은 기본 설정인 Campbell 로 리눅스는 "Solarized Dark" 로 설정했습니다.

...

Code Block
"profiles":
    {
        "defaults":
        {
            // Put settings here that you want to apply to all profiles.
            "acrylicOpacity" : 0.5,
            "background" : "#012456",
            "closeOnExit" : true,
            "colorScheme" : "Solarized Dark",
            "cursorColor" : "#FFFFFF",
            "cursorShape" : "bar",
            "fontFace" : "FiraCode, D2Coding",
            "fontSize" : 14,
            "historySize" : 9001,
            "padding" : "0, 0, 0, 0",
            "snapOnInput" : true,
            "useAcrylic" : false
        },


단축키

keybindings 항목에 action 별 단축키를 지정할 수 있습니다. 기본 복사/붙여넣기는 Ctrl+Shift+C와 Ctrl+Shift+V 라 아래 설정으로 Ctrl-C, Ctrl-V 로 변경했습니다.

...

Pane 의 크기를 조정하려면 alt+shift 과 방향키를 눌러서 조정해 주면 됩니다.


같이 보기