I'm trying to learn about color text in a terminal window. (In case it matters I'm using Terminal.app on OS X.) I'd like to get the terminal's current foreground and background color pair. It looks like I should be able to get this info in a perl script using the Term::Cap library, but the solution eludes me.

In a perl script how would I query the terminal's current foreground and background color pair value?

link|improve this question
feedback

1 Answer

I don't think most terminals support reporting this -- and it doesn't look like termcap or terminfo have any entries for it. You're just expected to set the color pair as necessary, not to ask the terminal what it's set to right now. In the ECMA-48 standard (better known as "ANSI" after ANSI X3.64, where it used to live), the only command that makes reference to color is SGR "Set Graphic Rendition", which is purely write-only.

link|improve this answer
I think you are correct. I did read through lots of man pages and was coming to the same conclusion that the current color pair is a write-only property, but since terminal programming is all new to me I wanted to ask in case there was something I missed. Thanks for your help. – Hair of the Dog Feb 15 '11 at 15:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.