Installing Fish Shell on Different Linux Distributions


๐ŸŸ Installing Fish Shell on Different Linux Distributions

Fish is a smart and user-friendly shell that provides features like autosuggestions and syntax highlighting out of the box. Hereโ€™s how you can install and start using Fish shell on Debian, Fedora, and Arch Linux.

๐Ÿง For Debian-Based Systems

๐Ÿ“ฆ Install Fish shell:

sudo apt install fish
  

โš™๏ธ Set Fish as the default shell:

chsh -s /usr/bin/fish
  

โ–ถ๏ธ Start Fish shell:

fish
  

๐ŸŸฃ For Fedora

๐Ÿ“ฆ Install Fish shell:

sudo dnf install fish
  

โš™๏ธ Set Fish as the default shell:

chsh -s /usr/bin/fish
  

โ–ถ๏ธ Start Fish shell:

fish
  

๐Ÿ’™ For Arch Linux

๐Ÿ“ฆ Install Fish shell:

sudo pacman -S fish
  

โš™๏ธ Set Fish as the default shell:

chsh -s /usr/bin/fish
  

โ–ถ๏ธ Start Fish shell:

fish
  

โœ… Done

Enjoy using Fish shell! Its simplicity and out-of-the-box features make it a great choice for both new and experienced Linux users alike.