Forked from AlexZeitler/setup-oh-my-zsh-powerlevel9k.sh
Created
July 17, 2021 06:42
-
-
Save faizalanwar/2126208989852c8ca9b1d3e5291c9e62 to your computer and use it in GitHub Desktop.
Installing zsh / oh-my-zsh / Powerlevel9k on Ubuntu 18.04
This file contains hidden or 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
| sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k | |
| wget https://github.com/powerline/powerline/raw/develop/font/PowerlineSymbols.otf | |
| wget https://github.com/powerline/powerline/raw/develop/font/10-powerline-symbols.conf | |
| mkdir ~/.local/share/fonts/ | |
| mv PowerlineSymbols.otf ~/.local/share/fonts/ | |
| fc-cache -vf ~/.local/share/fonts/ | |
| mkdir ~/.config/fontconfig/conf.d/ | |
| mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/ | |
| echo "Log out of your session and login again." |
This file contains hidden or 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
| sudo apt-get update | |
| sudo apt-get install zsh git curl -y | |
| chsh -s $(which zsh) | |
| echo "Log out of your session and login again. Then run setup-oh-my-zsh-powerlevel9k.sh" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment