From 4fab4cc6e4fba06f4a8cf13a74afcf2e112fd6e1 Mon Sep 17 00:00:00 2001 From: dgames Date: Sun, 30 May 2021 08:41:40 -0400 Subject: [PATCH] make unknown color white for all shells --- vendor/git-prompt.sh | 2 +- vendor/psmodules/Cmder.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/git-prompt.sh b/vendor/git-prompt.sh index ccda575..957dcdc 100644 --- a/vendor/git-prompt.sh +++ b/vendor/git-prompt.sh @@ -61,7 +61,7 @@ else PS1="$PS1"'\[\033[36m\]' # change color to cyan PS1="$PS1"'`__git_ps1`' # bash function else - PS1="$PS1"'\[\033[30;1m\]' # change color to gray + PS1="$PS1"'\[\033[37;1m\]' # change color to white PS1="$PS1"'`getSimpleGitBranch`' fi fi diff --git a/vendor/psmodules/Cmder.ps1 b/vendor/psmodules/Cmder.ps1 index 5ede0cf..755d4a7 100644 --- a/vendor/psmodules/Cmder.ps1 +++ b/vendor/psmodules/Cmder.ps1 @@ -43,7 +43,7 @@ function checkGit($Path) { } else { $branchName = "HEAD detached at $($headContent.Substring(0, 7))" } - Write-Host " [$branchName]" -NoNewline -ForegroundColor DarkGray + Write-Host " [$branchName]" -NoNewline -ForegroundColor White } return