Skip to content

Instantly share code, notes, and snippets.

@JasonC761
Forked from frfahim/oh-my-fish.md
Created April 28, 2024 15:11
Show Gist options
  • Save JasonC761/d1e71f227f61997f9cb95bdcac2e3974 to your computer and use it in GitHub Desktop.
Save JasonC761/d1e71f227f61997f9cb95bdcac2e3974 to your computer and use it in GitHub Desktop.
Install fish shell and oh-my-fish on ubuntu

First install fish shell on your system

sudo apt-get update
sudo apt-get install fish

Or install fish via ppa

sudo apt-add-repository ppa:fish-shell/release-2
sudo apt-get update
sudo apt-get install fish``

oh-my-fish is a framework of fish shell

Now install oh-my-fish

sudo apt-get update
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
fish install

If you don't have curl install

sudo apt-get install curl

Set fish as default shell

chsh -s /usr/bin/fish

or

chsh -s `which fish`

Install theme

omf install agnoster bobthefish

There others theme also. Install anyone that you want.

List of Themes

To setup theme

omf theme agnoster

List of plugins

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment