Last active
February 13, 2019 21:40
-
-
Save kepbod/11075559 to your computer and use it in GitHub Desktop.
Installing font for powerline
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
#!/usr/bin/env bash | |
printf '\033[0;34m%s\033[0m\n' "Installing font for statusline..." | |
mkdir $HOME/.fonts | |
wget -O $HOME/.fonts/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf | |
fc-cache -vf $HOME/.fonts | |
mkdir $HOME/.fonts.conf.d | |
wget -O $HOME/.fonts.conf.d/10-powerline-symbols.conf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment