-
-
Save PiiXiieeS/f8bca891d4b37e114d395520b1f84224 to your computer and use it in GitHub Desktop.
Installing zsh / oh-my-zsh / Powerlevel10k on Ubuntu 20.04.2 LTS
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