Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Cygwin how do I change the font color?

Tags:

I want to start using Cygwin, but I am not pleased with the font color and would like to change it to light green with a black background.

(I tried googling to no avail BTW)

like image 222
Luis Avatar asked Feb 19 '09 14:02

Luis


People also ask

How do I set the Font color?

Go to Format > Font > Font. + D to open the Font dialog box. Select the arrow next to Font color, and then choose a color.

Which is used to change the color of text?

Detailed Solution. The correct answer is Font color. You can change the colour of the text in your Word document.


2 Answers

It is basically just a DOS window. So click on the icon in the upper left of the shell window to get the menu. Go to properties. You can then change the colors, font, command history, and edit options (you will want to turn on Quick Edit and Insert modes).

like image 127
Brian Neal Avatar answered Sep 25 '22 18:09

Brian Neal


I find the standard shell to be pretty horrible myself.

I download and install the rxvt package and change the cygwin.bat to launch rxvt which has nicer support of copy-cut-n-paste.

@echo off c: chdir c:\data\cygwin\bin set EDITOR=vi set VISUAL=vi set CYGWIN=codepage:ansi rxvt -fn '*-courier-*-r-*-16-*' -sl  9999 -bg Black -fg Cyan -e /bin/bash -login 

The -e and -login switch the launch shell to the rxvt one and the rest: -fn sets a courier size 16 font (sue me) -sl scroll lines of 9999 Black background and Cyan foreground selecting text will fill the paste buffer automatically the last bit (-e /bin/bash -login) launches bash and tells it that its a login shell which runs the profile setups and such.

like image 40
jim Avatar answered Sep 22 '22 18:09

jim