Skip to content

Instantly share code, notes, and snippets.

@bmv437
Last active January 25, 2019 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmv437/24d5267b89ebd6edd4eae897ed752329 to your computer and use it in GitHub Desktop.
Save bmv437/24d5267b89ebd6edd4eae897ed752329 to your computer and use it in GitHub Desktop.
install fish shell
#!/bin/bash
echo "Installing Fish Shell..."
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt-get update
sudo apt-get install fish --yes
echo "To set Fish Shell as the default shell, run the following command:"
echo "chsh -s $(which fish)"
echo "Then log out and log back in again"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment