[bash] oh-my-bash 설정

somnode·2021년 2월 5일
0

WSL에서 oh-my-bash 사용하기

1. 설치

bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"

2. 테마 변경

~/.bashrc에서 OSH_THEME를 아래와 같이 수정한다.
테마 종류는 https://github.com/ohmybash/oh-my-bash/wiki/Themes에서 볼 수 있다.

sed -i "s/OSH_THEME=\"font\"/OSH_THEME=\"powerline\"/g" ~/.bashrc
source ~/.bashrc

테마를 변경하고 나면 폰트가 깨진다.
아래 D2Coding 폰트를 설치하자.

3. D2Coding 폰트 설치

WSL

https://github.com/naver/d2codingfont/releases/download/VER1.3.2/D2Coding-Ver1.3.2-20180524.zip에서 폰트를 다운로드 받은 후 압축을 풀고 Windows에 폰트를 설치한다.

WSL의 설정 파일인 settings.json 파일에서 아래와 같이 fontFace를 추가한다.

"defaults":
{
  // Put settings here that you want to apply to all profiles.
  "fontFace": "D2Coding"
}

Ubuntu

  • 설치
sudo apt-get install fonts-naver-d2coding

0개의 댓글