Thank you very much in advance for helping.
I'm a happy user of Cygwin and Mintty in Windows 7. But I always like to see what other options are out there. So I downloaded Console2 and ConEmu.
First step is, always, is runinng bash. That was easy. Just typing 'bash'... Second step, customise the appearance. This was impossible!
As you can see in the following screen shot, it looks like the ANSI colors are not suported, which I can expect form Console2, but no form ConEmu. The order of consoles is (from top to bottom): Mintty (Cygwin), Console2 and ConEmu.
So any ideas what's going on?
I downloaded Console2 months ago, and I think the colors worked ok. I have no idea why now it has the powershell appearance.
I actually tried Powershell some weeks ago and tweaked the colors a little bit. Can that have caused the mess within the other terminals?
Luckily for me Mintty is fine.
Thanks!
UPDATE:
It looks like the problem is actually in my custom command prompt!
It works fine in Mintty but Console2 and ConEmu doesn't like it.
# Custom Shell
# Green 113
# Red 173
# Blue 81
# Yellow 186
# Light Green 194
# Light Blue 195
function EXT_COLOR () { echo -ne "\e[38;5;$1m"; }
function CLOSE_COLOR () { echo -ne '\e[m'; }
PS1=' `EXT_COLOR 81`\]\u@\h`CLOSE_COLOR`\] `EXT_COLOR 195`\]$PWD >`CLOSE_COLOR`\]`EXT_COLOR 173`\]$(__git_ps1 " (%s)")`CLOSE_COLOR`\]\n '
export LS_COLORS='di=38;5;108:fi=00:*svn-commit.tmp=31:ln=38;5;116:ex=38;5;186'
echo -e "\e[38;5;194m$(date +%A\ %d\ %B\ %Y\ -\ %H:%M)\e[m"