[windows] wsl 꾸미기

somnode·2021년 2월 4일
0

Windows Terminal 설치하기

Microsoft Store에서 Windows Terminal을 다운로드한다.

Ubuntu Profile 설정 변경

wsl 창에서 ctrl+,를 누르면 settings.json 파일이 열린다.

{
  "guid": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}",
  "hidden": false,
  "name": "Ubuntu",
  "source": "Windows.Terminal.Wsl",
  "startingDirectory": "//wsl$/Ubuntu/home/somnode/",
  "icon": "https://i.imgur.com/FmZtspC.png"
}
  • startingDirectory
    • WSL 시작 시 위치하는 디렉터리 설정
    • default로 /mnt/c/Users/<USER> 경로에 위치하는데, /home/<USER>로 위치시키도록 수정하는 옵션
  • icon
    • window terminal 상단에 표시되는 아이콘

Windows Terminal 설정 변경

  • colorScheme 및 배경화면 변경 & 커서 모양 및 색상 변경
    https://terminalsplash.com/에서 원하는 colorScheme의 code를 복사해서 settings.json 파일의 schemes 안에 붙여넣는다.
"schemes": [
  {
    "name": "UbuntuLegit",
    "background":  "#2C001E",
    "black":  "#4E9A06",
    "blue":  "#3465A4",
    "brightBlack":  "#555753",
    "brightBlue":  "#729FCF",
    "brightCyan":  "#34E2E2",
    "brightGreen":  "#8AE234",
    "brightPurple":  "#AD7FA8",
    "brightRed":  "#EF2929",
    "brightWhite":  "#EEEEEE",
    "brightYellow":  "#FCE94F",
    "cyan":  "#06989A",
    "foreground":  "#EEEEEE",
    "green":  "#300A24",
    "purple":  "#75507B",
    "red":  "#CC0000",
    "white":  "#D3D7CF",
    "yellow":  "#C4A000"
  }
]
"defaults":
{
  // Put settings here that you want to apply to all profiles.
  "colorScheme": "UbuntuLegit",
  "backgroundImage": "https://i.imgur.com/vIfF0Yx.png",
  "backgroundImageOpacity": 0.8,
  "cursorShape": "vintage",
  "cursorColor": "#eee8d5"
}

oh-my-bash 설치

oh-my-bash 설치는 아래 게시물을 참고한다.
https://velog.io/@somnode/oh-my-bash


0개의 댓글