From a0aa53a443553f12261f4c2b380219bef2426cd2 Mon Sep 17 00:00:00 2001 From: Ilan Cosman Date: Thu, 2 Apr 2020 17:12:55 -0700 Subject: [PATCH] Make installation friendlier --- install.fish | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/install.fish b/install.fish index 4f4ff69..767c32d 100644 --- a/install.fish +++ b/install.fish @@ -1,11 +1,14 @@ -#!/bin/bash +#!/bin/fish + +echo "Installing lean theme..." + # -------------------Download Files------------------- set fileDestination $__fish_config_dir/functions set githubLocation "https://raw.githubusercontent.com/IlanCosman/lean/master/" -wget -P $fileDestination $githubLocation/fish_prompt.fish -wget -P $fileDestination $githubLocation/lean_pwd.fish -wget -P $fileDestination $githubLocation/lean_git_prompt.fish +wget -q -P $fileDestination $githubLocation/fish_prompt.fish +wget -q -P $fileDestination $githubLocation/lean_pwd.fish +wget -q -P $fileDestination $githubLocation/lean_git_prompt.fish # ----------------Set Theme Variables---------------- # ---------------Pwd--------------- @@ -32,4 +35,6 @@ set -U __fish_git_prompt_color_upstream 5FD700 set -U __fish_git_prompt_color_stagedstate D7AF00 set -U __fish_git_prompt_color_dirtystate D7AF00 set -U __fish_git_prompt_color_untrackedfiles 00AFFF -set -U __fish_git_prompt_color_stashstate 5FD700 \ No newline at end of file +set -U __fish_git_prompt_color_stashstate 5FD700 + +echo "Lean theme installed! Restart fish to see your new prompt." \ No newline at end of file