ubuntu 安裝 Fish shell
> 詳細教學 install-fish-shell-mac-ubuntu
1
| sudo apt-add-repository ppa:fish-shell/release-2
|
遇到:執行 add-apt-repository 指令之後,出現「Command not found」的訊息
解決方式
1
| apt-get install software-properties-common
|
然後升級 apt-get 然後 install
1 2
| sudo apt-get update sudo apt-get install fish
|
把 Fish 設定為預設 shell 工具:
升級 git
1 2 3
| sudo add-apt-repository ppa:git-core/ppa sudo apt-get update sudo apt-get install git
|
安裝 OMF
1 2
| curl -L https://get.oh-my.fish > install fish install --path=~/.local/share/omf --config=~/.config/omf
|
安裝主題
1 2 3 4
| omf install bobthefish wget https: sudo unzip FiraCode.zip -d /usr/local/share/fonts/ sudo fc-cache -fv
|