Cygwin Setup Terminals: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
=Default rxvt Terminal=
=Default rxvt Terminal=


1. Create /home/ovidiu/bin/cygwin-rxvt.bat
Create <tt>/home/ovidiu/bin/cygwin-rxvt.bat</tt>


{{{
<pre>
@echo off
@echo off


Line 14: Line 14:


start rxvt -sr -sl 10000 -geometry 120x60 -fg gray -bg black -fn "-b&h-lucidatypewriter-medium-r-normal-sans-0-0-10-10-m-0-iso8859-2" -e /bin/bash --login -i
start rxvt -sr -sl 10000 -geometry 120x60 -fg gray -bg black -fn "-b&h-lucidatypewriter-medium-r-normal-sans-0-0-10-10-m-0-iso8859-2" -e /bin/bash --login -i
}}}
</pre>


2. Make it executable:
Make it executable


{{{
<pre>
cd ~/bin
cd ~/bin
chmod a+x cygwin-rxvt.bat
chmod a+x cygwin-rxvt.bat
}}}
</pre>


3. Copy and paste the existing desktop Cygwin Terminal icon, place the copy on the desktop.
Copy and paste the existing desktop Cygwin Terminal icon, place the copy on the desktop.


4. Edit the copy of the icon as follows:
Edit the copy of the icon as follows:


* General tab - Name: cygwin
* General tab - Name: cygwin

Revision as of 02:09, 13 January 2016

Overview

All terminal scripts for a default cygwin installation should be placed in /home/<username>/bin. If the "bin" directory does not exist, create it.

Default rxvt Terminal

Create /home/ovidiu/bin/cygwin-rxvt.bat

@echo off

C:
chdir C:\cygwin\bin

start rxvt -sr -sl 10000 -geometry 120x60 -fg gray -bg black -fn "-b&h-lucidatypewriter-medium-r-normal-sans-0-0-10-10-m-0-iso8859-2" -e /bin/bash --login -i

Make it executable

cd ~/bin
chmod a+x cygwin-rxvt.bat

Copy and paste the existing desktop Cygwin Terminal icon, place the copy on the desktop.

Edit the copy of the icon as follows:

  • General tab - Name: cygwin
  • Shortcut tab - Target: C:\cygwin\home\ovidiu\bin\cygwin-rxvt.bat
  • Shortcut tab - Start in: C:\cygwin\home\ovidiu

5. Drag the icon to quick-launch and then delete the icon from the desktop.

6. Optional - if you don't like the icon, copy the .ico from the current machine into C:\cygwin\home\ovidiu\bin and change the icon on the shortcut.


!!!Large Fonts rxvt Terminal

1. Create /home/ovidiu/bin/cygwin-rxvt-large-fonts.bat

{{{ @echo off

C: chdir C:\cygwin\bin

start rxvt -sr -sl 10000 -geometry 120x60 -fg black -bg white -fn -*-lucidatypewriter-medium-*-*-*-18-*-*-*-*-*-*-* -e /bin/bash --login -i }}}

2. Make it executable:

{{{ cd ~/bin chmod a+x cygwin-rxvt-large-fonts.bat }}}

3. Copy and paste the existing desktop Cygwin Terminal icon, place the copy on the desktop.

4. Edit the copy of the icon as follows:

  • General tab - Name: cygwin (winterm)
  • Shortcut tab - Target: C:\cygwin\home\ovidiu\bin\cygwin-rxvt-large-fonts.bat
  • Shortcut tab - Start in: C:\cygwin\home\ovidiu

5. Drag the icon to quick-launch and then delete the icon from the desktop.

6. Optional - if you don't like the icon, copy the .ico from the current machine into C:\cygwin\home\ovidiu\bin and change the icon on the shortcut.

!!!Windows Native Terminal

1. Create /home/ovidiu/bin/cygwin-winterm.bat

{{{ @echo off

C: chdir C:\cygwin\bin

bash --login -i }}}

2. Make it executable:

{{{ cd ~/bin chmod a+x cygwin-winterm.bat }}}

3. Copy and paste the existing desktop Cygwin Terminal icon, place the copy on the desktop.

4. Edit the copy of the icon as follows:

  • General tab - Name: cygwin (large fonts)
  • Shortcut tab - Target: C:\cygwin\home\ovidiu\bin\cygwin-winterm.bat
  • Shortcut tab - Start in: C:\cygwin\home\ovidiu

5. Drag the icon to quick-launch and then delete the icon from the desktop.

6. Optional - if you don't like the icon, copy the .ico from the current machine into C:\cygwin\home\ovidiu\bin and change the icon on the shortcut.