System2021-08-291 min read

Install fish shell in ubuntu

run command: sudo apt-add-repository ppa:fish-shell/release-3 sudo apt-get update sudo apt-get install fish set fish as default shell chsh -s /usr/bin/fish or c

Nguyen Pham
Xin chào. Mình thích lập trình và công nghệ. Đây là blog mình chia sẻ lại các kiến thức về lập trình, công nghệ.

run command:

code
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish

set fish as default shell

code
chsh -s /usr/bin/fish
or
chsh -s $(which fish)

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

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

set agnoster theme

omf theme agnoster

add newline agnoster

Tags:#System#Ubuntu#fish#ubuntu
Install fish shell in ubuntu — vdailyapp Blog