Windows – How to integrate Console2 over Cygwin (WinXP)

console2cygwin;windows xp

I have installed Console2 and Cygwin too. I like to run Cygwin terminal as Console2. So i want to integrate Console2 over Cygwin. I have seen other guys use Cygwin like that. How to do it?

Best Answer

I have a batch script's path in the tab's Shell field, with this as its contents:

@echo off

set path=%PROGRAMPATH%\cygwin\bin;%PROGRAMPATH%\cygwin\usr\X11R6\bin;%PATH%
set SHELL=/bin/bash
set CYGWIN=codepage:437
set HOME=/home/paradroid

%PROGRAMPATH%\cygwin\bin\bash --login -i

Obviously, you will need to edit the Cygwin path and the username for the home directory.

Related Question