vote up 3 vote down star
1

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)

flag

76% accept rate
we're your last resort? wow, that hurts. ;) – Don Branson Feb 19 at 14:40

4 Answers

vote up 1 vote down check

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.

link|flag
vote up 4 vote down

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).

link|flag
vote up 1 vote down

The cygwin icon is actually just a MS-DOS batch file (if you right-click on it, you can edit it and see that it just launches bash from the cygwin\bin directory). If you right-click and go to Properties, there's a Colors tab where you can change the background and font colors. If you modify the main shortcut properties, it should launch with those every time.

link|flag
vote up 1 vote down

If you want a better terminal to use with cygwin than the Windows Command Line window you could start xterm from within cygwin, or look at using puttycyg, which is a patched version of the windows ssh client putty designed to work with a local cygwin installation (in addition to the normal ssh functionality). puttycyg should provide you with much better control of your terminal than the Windows Command Line window.

link|flag
+1 for puttycyg, makes the cygwin shell much more useable – Naseer Feb 23 at 12:32

Your Answer

Get an OpenID
or

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