Re: ANN: Terminal 0.9.4
Alexander Malmberg <[email protected]> Sat, 18 Jan 2003 12:21:33 +0100
| Newsgroups | gmane.comp.lib.gnustep.applications,gmane.comp.lib.gnustep.general |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > > On 18 Jan, Alexander Malmberg wrote: > > I've released Terminal 0.9.4: > > Looks good. > > One of the best features of Nextstep's Terminal.app, was the ability to > search for selected text in the scrollback history. Is that feature > planned? Sounds useful. It's planned now. :) > Also, how do you change the foreground/background and the text colour? Using all the standard escape sequences. :) To set the 'default' color, use: setterm -foreground red -background green -store To always use them, put something like: if [ x$TERM_PROGRAM = xGNUstep_Terminal ]; then setterm -foreground green -background red -store -clear fi in ~/.bashrc (or equivalent). - Alexander Malmberg