Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/add quick install #333

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ On other environments, you can copy and paste these commands to your terminal. C
cd ..
rm -rf fonts

Or you can run the follow script.
::
curl -o- https://raw.githubusercontent.com/powerline/fonts/master/get-fonts.sh | sh

Uninstall
---------

Expand Down
9 changes: 9 additions & 0 deletions get-fonts.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

# This script is meant for quick & easy install via:

{ # this ensures the entire script is downloaded #

cd /tmp && git clone https://github.com/powerline/fonts.git --depth=1 && /tmp/fonts/install.sh && rm -rf /tmp/fonts

} # this ensures the entire script is downloaded #