Skip to content

Instantly share code, notes, and snippets.

@Aareon
Created March 8, 2021 00:13
Show Gist options
  • Save Aareon/1d914e214110b77d0ff51850488e4873 to your computer and use it in GitHub Desktop.
Save Aareon/1d914e214110b77d0ff51850488e4873 to your computer and use it in GitHub Desktop.
Get and install Powerline fonts
# 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