diff --git a/README.rst b/README.rst index 6021aff5..5a52bdd3 100644 --- a/README.rst +++ b/README.rst @@ -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 --------- diff --git a/get-fonts.sh b/get-fonts.sh new file mode 100644 index 00000000..0d49df04 --- /dev/null +++ b/get-fonts.sh @@ -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 #