본문 바로가기

Programming

[Linux/Tool] 우분투 Fish Shell 사용하기

728x90
반응형

 Ubuntu 17.10  


친구가 fish shell을 추천해서 설치 해봤습니다.


https://fishshell.com/



fish shell 설치


 sudo apt-add-repository ppa: fish-shell/release-2

 sudo apt-get update

 sudo apt-get install fish



쉘 지정 


 chsh -s /usr/bin/fish

 


이후 쉘을 다시 실행하면 됩니다.



fish shell을 실행하면 "Welcome to fish, the friendly interactive shell"이라고 뜹니다.





https://github.com/oh-my-fish/oh-my-fish


테마 설정 (Oh My Fish)


 curl -L https://get.oh-my.fish | fish

 curl -L https://git.oh-my.fish > install

 fish install --path=~/.local/share/omf --config=~/.config/omf




테마 찾기

https://github.com/oh-my-fish/oh-my-fish/blob/master/docs/Themes.md


테마 설치

테마를 설치하면 바로 적용 된다.


 omf install "테마이름" 



ex) bira




설치된 테마 확인


 omf list

 




테마 변경

 omf theme "테마이름" 










반응형