jcjordyn140 / mintty

Automatically exported from code.google.com/p/mintty
GNU General Public License v3.0
0 stars 0 forks source link

Configurable ANSI colours #62

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There've been a couple of requests for being able to change the ANSI
colours. It'd probably be sufficient if that could be done through config
file entries only.

Original issue reported on code.google.com by andy.koppe on 8 Mar 2009 at 9:47

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
Implemented in r190 on trunk.

Original comment by andy.koppe on 17 Mar 2009 at 7:00

GoogleCodeExporter commented 9 years ago
Reverted in r191, because the ANSI colours can already be changed through the 
Linux
console's set palette sequence ^[]Pnrrggbb, for example

  echo -e "\e]P3DFDF00"

to brighten up ANSI yellow (colour 3).

Hence there's no need to clutter up the config file with all those colour 
values.
This just needs documenting in the manpage.

Original comment by andy.koppe on 17 Mar 2009 at 7:59

GoogleCodeExporter commented 9 years ago
Added manpage tip in r199 on 0.3 branch.

Original comment by andy.koppe on 20 Mar 2009 at 7:10

GoogleCodeExporter commented 9 years ago

Original comment by andy.koppe on 20 Mar 2009 at 7:10

GoogleCodeExporter commented 9 years ago

Original comment by andy.koppe on 20 Mar 2009 at 8:33

GoogleCodeExporter commented 9 years ago
I'd regard compatibility with the Linux palette sequence
as a potential defect, since it's using an improperly
terminated string per ECMA-48.

Original comment by dic...@his.com on 21 Mar 2009 at 4:00

GoogleCodeExporter commented 9 years ago
Fair enough. The ECMA-48-compliant xterm version of this is now supported as 
well
though, as per issue 67, and actually that's the one that's described in the 
manpage.

  echo -e "\e]4;3;#DFDF00\a"

Original comment by andy.koppe on 21 Mar 2009 at 4:50