Last active
August 29, 2015 14:04
-
-
Save phdelodder/37a1a0ff4771de57a895 to your computer and use it in GitHub Desktop.
PowerLine font fix
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
#!/bin/bash | |
#option1 | |
wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf | |
sudo mv PowerlineSymbols.otf /usr/share/fonts/ | |
sudo fc-cache -vf | |
sudo mv 10-powerline-symbols.conf /etc/fonts/conf.d/ | |
gsettings set org.gnome.desktop.interface monospace-font-name 'Ubuntu Mono for Powerline 13' | |
#option2 | |
mkdir -p ~/.fonts | |
cd ~/.fonts | |
git clone git://github.com/Lokaltog/powerline-fonts.git | |
sudo fc-cache -vf | |
gsettings set org.gnome.desktop.interface monospace-font-name 'Ubuntu Mono derivative Powerline 13' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment