diff --git a/themes/Chmike.bgptheme b/themes/Chmike.bgptheme index b0418bc..f6c8852 100644 --- a/themes/Chmike.bgptheme +++ b/themes/Chmike.bgptheme @@ -14,7 +14,7 @@ override_git_prompt_colors() { GIT_PROMPT_THEME_NAME="Chmike" GIT_PROMPT_BRANCH="${Green}" - GIT_PROMPT_MASTER_BRANCH="${Green}" + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" GIT_PROMPT_REMOTE=" " GIT_PROMPT_SYMBOLS_NO_REMOTE_TRACKING="⭐" diff --git a/themes/Custom.bgptemplate b/themes/Custom.bgptemplate index 6fc2e9f..ac17c67 100644 --- a/themes/Custom.bgptemplate +++ b/themes/Custom.bgptemplate @@ -14,7 +14,7 @@ override_git_prompt_colors() { # GIT_PROMPT_SEPARATOR="|" # separates each item # GIT_PROMPT_BRANCH="${Magenta}" # the git branch that is active in the current directory - # GIT_PROMPT_MASTER_BRANCH="${Magenta}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES + # GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES # GIT_PROMPT_STAGED="${Red}●" # the number of staged files/directories # GIT_PROMPT_CONFLICTS="${Red}✖ " # the number of files in conflict # GIT_PROMPT_CHANGED="${Blue}✚ " # the number of changed files diff --git a/themes/Default.bgptheme b/themes/Default.bgptheme index ade65f5..9906a00 100644 --- a/themes/Default.bgptheme +++ b/themes/Default.bgptheme @@ -42,7 +42,7 @@ define_undefined_git_prompt_colors() { if [ -z ${GIT_PROMPT_SEPARATOR+x} ]; then GIT_PROMPT_SEPARATOR="|"; fi # separates each item if [ -z ${GIT_PROMPT_BRANCH+x} ]; then GIT_PROMPT_BRANCH="${Magenta}"; fi # the git branch that is active in the current directory - if [ -z ${GIT_PROMPT_MASTER_BRANCH+x} ]; then GIT_PROMPT_MASTER_BRANCH="${Magenta}"; fi # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES + if [ -z ${GIT_PROMPT_MASTER_BRANCH+x} ]; then GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}"; fi # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES if [ -z ${GIT_PROMPT_STAGED+x} ]; then GIT_PROMPT_STAGED="${Red}●"; fi # the number of staged files/directories if [ -z ${GIT_PROMPT_CONFLICTS+x} ]; then GIT_PROMPT_CONFLICTS="${Red}✖ "; fi # the number of files in conflict if [ -z ${GIT_PROMPT_CHANGED+x} ]; then GIT_PROMPT_CHANGED="${Blue}✚ "; fi # the number of changed files diff --git a/themes/Evermeet.bgptheme b/themes/Evermeet.bgptheme index 78d0c06..5381407 100644 --- a/themes/Evermeet.bgptheme +++ b/themes/Evermeet.bgptheme @@ -9,7 +9,7 @@ override_git_prompt_colors() { GIT_PROMPT_SEPARATOR="|" # separates each item GIT_PROMPT_BRANCH="${Magenta}" # the git branch that is active in the current directory - GIT_PROMPT_MASTER_BRANCH="${Magenta}" # the git branch that is active in the current directory + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES GIT_PROMPT_STAGED="${Cyan}●" # the number of staged files/directories GIT_PROMPT_CONFLICTS="${BoldRed}✖" # the number of files in conflict GIT_PROMPT_CHANGED="${Cyan}✚" # the number of changed files diff --git a/themes/Evermeet_Lowres.bgptheme b/themes/Evermeet_Lowres.bgptheme index df432ad..6034535 100644 --- a/themes/Evermeet_Lowres.bgptheme +++ b/themes/Evermeet_Lowres.bgptheme @@ -11,7 +11,7 @@ override_git_prompt_colors() { GIT_PROMPT_SEPARATOR="|" # separates each item GIT_PROMPT_BRANCH="${Magenta}" # the git branch that is active in the current directory - GIT_PROMPT_MASTER_BRANCH="${Magenta}" # the git branch that is active in the current directory + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES GIT_PROMPT_STAGED="${Cyan}●" # the number of staged files/directories GIT_PROMPT_CONFLICTS="${BoldRed}✖ " # the number of files in conflict GIT_PROMPT_CHANGED="${Cyan}✚ " # the number of changed files diff --git a/themes/Evermeet_Ubuntu.bgptheme b/themes/Evermeet_Ubuntu.bgptheme index b920066..1bf043f 100644 --- a/themes/Evermeet_Ubuntu.bgptheme +++ b/themes/Evermeet_Ubuntu.bgptheme @@ -11,7 +11,7 @@ override_git_prompt_colors() { GIT_PROMPT_SEPARATOR="|" # separates each item GIT_PROMPT_BRANCH="${Magenta}" # the git branch that is active in the current directory - GIT_PROMPT_MASTER_BRANCH="${Magenta}" # the git branch that is active in the current directory + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES GIT_PROMPT_STAGED="${Cyan}● " # the number of staged files/directories GIT_PROMPT_CONFLICTS="${BoldRed}✖ " # the number of files in conflict GIT_PROMPT_CHANGED="${Cyan}✚ " # the number of changed files diff --git a/themes/Minimal.bgptheme b/themes/Minimal.bgptheme index a4dd06a..5077715 100644 --- a/themes/Minimal.bgptheme +++ b/themes/Minimal.bgptheme @@ -36,7 +36,7 @@ override_git_prompt_colors() { Time12a="\$(date +%H:%M:%S)" GIT_PROMPT_BRANCH="${BoldMagenta}" # the git branch that is active in the current directory - GIT_PROMPT_MASTER_BRANCH="${BoldMagenta}" # the git branch that is active in the current directory + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_MASTER_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES GIT_PROMPT_PREFIX="" # start of the git info string GIT_PROMPT_SUFFIX="" # the end of the git info string GIT_PROMPT_SEPARATOR="" # separates each item diff --git a/themes/Minimal_UserHost.bgptheme b/themes/Minimal_UserHost.bgptheme index 493f959..d446302 100644 --- a/themes/Minimal_UserHost.bgptheme +++ b/themes/Minimal_UserHost.bgptheme @@ -44,7 +44,7 @@ override_git_prompt_colors() { fi GIT_PROMPT_BRANCH="${BoldMagenta}" # the git branch that is active in the current directory - GIT_PROMPT_MASTER_BRANCH="${BoldMagenta}" # the git branch that is active in the current directory + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_MASTER_BRANCH}" # used if the git branch that is active in the current directory is $GIT_PROMPT_MASTER_BRANCHES GIT_PROMPT_PREFIX="" # start of the git info string GIT_PROMPT_SUFFIX="" # the end of the git info string GIT_PROMPT_SEPARATOR="" # separates each item diff --git a/themes/Single_line_Dark.bgptheme b/themes/Single_line_Dark.bgptheme index 52614b5..c68a198 100644 --- a/themes/Single_line_Dark.bgptheme +++ b/themes/Single_line_Dark.bgptheme @@ -4,7 +4,7 @@ override_git_prompt_colors() { GIT_PROMPT_THEME_NAME="Single_line_nono031" GIT_PROMPT_BRANCH="${Cyan}" - GIT_PROMPT_MASTER_BRANCH="${Cyan}" + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" GIT_PROMPT_UNTRACKED=" ${Cyan}…${ResetColor}" GIT_PROMPT_CHANGED="${Yellow}✚ " GIT_PROMPT_STAGED="${Magenta}●" diff --git a/themes/Single_line_NoExitState_Gentoo.bgptheme b/themes/Single_line_NoExitState_Gentoo.bgptheme index c54aa4b..21d9657 100644 --- a/themes/Single_line_NoExitState_Gentoo.bgptheme +++ b/themes/Single_line_NoExitState_Gentoo.bgptheme @@ -4,7 +4,7 @@ override_git_prompt_colors() { GIT_PROMPT_THEME_NAME="Single_line_NoExitState_Gentoo" GIT_PROMPT_BRANCH="${Cyan}" - GIT_PROMPT_MASTER_BRANCH="${Cyan}" + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" GIT_PROMPT_UNTRACKED=" ${Cyan}…${ResetColor}" GIT_PROMPT_CHANGED="${Yellow}✚ " GIT_PROMPT_STAGED="${Magenta}●" diff --git a/themes/Single_line_NoExitState_openSUSE.bgptheme b/themes/Single_line_NoExitState_openSUSE.bgptheme index 1874b55..72d0d6d 100644 --- a/themes/Single_line_NoExitState_openSUSE.bgptheme +++ b/themes/Single_line_NoExitState_openSUSE.bgptheme @@ -4,7 +4,7 @@ override_git_prompt_colors() { GIT_PROMPT_THEME_NAME="Single_line_NoExitState_openSUSE" GIT_PROMPT_BRANCH="${Cyan}" - GIT_PROMPT_MASTER_BRANCH="${Cyan}" + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" GIT_PROMPT_UNTRACKED=" ${Cyan}…${ResetColor}" GIT_PROMPT_CHANGED="${Yellow}✚ " GIT_PROMPT_STAGED="${Magenta}●" diff --git a/themes/Single_line_openSUSE.bgptheme b/themes/Single_line_openSUSE.bgptheme index f8ec62c..faf24bf 100644 --- a/themes/Single_line_openSUSE.bgptheme +++ b/themes/Single_line_openSUSE.bgptheme @@ -4,7 +4,7 @@ override_git_prompt_colors() { GIT_PROMPT_THEME_NAME="Single_line_openSUSE" GIT_PROMPT_BRANCH="${Cyan}" - GIT_PROMPT_MASTER_BRANCH="${Cyan}" + GIT_PROMPT_MASTER_BRANCH="${GIT_PROMPT_BRANCH}" GIT_PROMPT_UNTRACKED=" ${Cyan}…${ResetColor}" GIT_PROMPT_CHANGED="${Yellow}✚ " GIT_PROMPT_STAGED="${Magenta}●"