Created
March 8, 2021 00:13
-
-
Save Aareon/1d914e214110b77d0ff51850488e4873 to your computer and use it in GitHub Desktop.
Get and install Powerline fonts
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
# make directory and its parents | |
md () { if ! [ -d $1 ]; then mkdir -p $1; fi } | |
# store pwd for reset later | |
PWD=pwd | |
# powerline fonts | |
md ~/.fonts && cd ~/.fonts | |
if [ -d powerline ]; then rm -rf powerline; fi | |
git clone https://github.com/powerline/fonts powerline --depth=1 | |
cd powerline | |
bash ./install.sh | |
cd $PWD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment