Created
May 5, 2022 20:48
-
-
Save EugeneMeles/e0f57b61cb345e0564807a8423d4e493 to your computer and use it in GitHub Desktop.
Fish shell + Nerd Font Hack + theme "Bobthefish" on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# add fish-shell repo and install: | |
sudo apt-add-repository ppa:fish-shell/release-3 | |
sudo apt update | |
sudo apt install fish | |
# add nerd-font hack: | |
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Hack.zip | |
sudo mkdir /usr/local/share/fonts/Hack | |
sudo unzip Hack.zip -d /usr/local/share/fonts/Hack/ | |
sudo fc-cache -fv | |
# set fish as default shell: | |
sudo chsh -s $(which fish) $USER | |
# install OMF: | |
curl -L http://get.oh-my.fish | fish | |
# install theme `bobthefish` https://github.com/oh-my-fish/theme-bobthefish | |
omf install bobthefish | |
set -U theme_nerd_fonts yes | |
set -U theme_display_date no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment