From c4da5e91d0533b647b9a043e02490f1886c1da0f Mon Sep 17 00:00:00 2001 From: Malfurious Date: Tue, 20 Jul 2021 23:43:04 -0400 Subject: Merge bash/zsh/fish color modes together This commit removes the differences between the supported shells and removes the options: --bash, --fish, and --zsh. I can not produce any problems in any of these shells using a generic form of the text coloring (ie: the one bash was using), so for simplicity I will opt to unify the way colors are handled and remove knowledge of the running shell. Something that _may_ end up being a problem is properly rendering the prompt in different terminal emulators. If this is of concern, it will be dealt with at a later time. Signed-off-by: Malfurious --- prompt.bash | 9 --------- 1 file changed, 9 deletions(-) delete mode 100755 prompt.bash (limited to 'prompt.bash') diff --git a/prompt.bash b/prompt.bash deleted file mode 100755 index 07691fb..0000000 --- a/prompt.bash +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -dot="$(cd "$(dirname "$0")" || exit; pwd)" -source "$dot/sonar-base.sh" - -if is_repo; then - prepare_bash_colors - render_prompt -fi -- cgit v1.2.3