Re: Tabbed xterm

2005-04-26 Thread Scott Cegielski
Thanks for the info.  I got it working.   One thing though, and this is
probably an easy one.  How can I get a windows shortcut to start mrxvt?  Xterms
are started like this:

C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xterm -e /usr/bin/tcsh

but if I try to start mrxvt like this:

C:\cygwin\usr\X11R6\bin\run.exe -p /usr/local/bin mrxvt -e /ust/bin/tcsh

Nothing comes up.  Any ideas?


--- Charles Plager [EMAIL PROTECTED] wrote:
  On Sun, 24 Apr 2005, Scott Cegielski wrote:
  
  I use ws3 under linux at work and have gotten really used to using gnome's
  tabbed shells.  I don't know if this is a xterm feature or a gnome feature
 or
  neither, but is this something that could be implemented under cygwin
 xfree?
  
  AFAIR there is some rxvt cole which can do this. Search the mailinglist
 archives.
  The keyword tabbed xterm or xterm tabs should help.
 
 mrxvt is 'rxvt console' you're looking for:
 http://materm.sourceforge.net/ is the homepage
 
 I downloaded mrxvt-0.4.0.tar.gz,
 http://prdownloads.sourceforge.net/materm/mrxvt-0.4.0.tar.gz?download
 
 
 configured as told to do in the README file,
 http://materm.sourceforge.net/docs/README
 
 ./configure --enable-everything --disable-debug
 then 'make' and 'make install'.
 
   Cheers,
 Charles
 


Scott Cegielski
[EMAIL PROTECTED]



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: Tabbed xterm

2005-04-26 Thread Alexander Gottwald
On Tue, 26 Apr 2005, Scott Cegielski wrote:

 Thanks for the info.  I got it working.   One thing though, and this is
 probably an easy one.  How can I get a windows shortcut to start mrxvt?  
 Xterms
 are started like this:
 
 C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin xterm -e /usr/bin/tcsh
 
 but if I try to start mrxvt like this:
 
 C:\cygwin\usr\X11R6\bin\run.exe -p /usr/local/bin mrxvt -e /ust/bin/tcsh
 
 Nothing comes up.  Any ideas?

-p is used to add additional entries to $PATH. You're mrxvt can not load the 
missing the X11 libraries and maybe not even the cygwin1.dll library

maybe this helps.
C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin mrxvt -e /usr/bin/tcsh
or
C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin -p /usr/local/bin mrxvt -e 
/usr/bin/tcsh

you may also start with placing mrxvt in /usr/bin (where xterm lives) and use
just a slightly tweaked command
C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin mrxvt -e /ust/bin/tcsh

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


Re: Tabbed xterm

2005-04-25 Thread Alexander Gottwald
On Sun, 24 Apr 2005, Scott Cegielski wrote:

 I use ws3 under linux at work and have gotten really used to using gnome's
 tabbed shells.  I don't know if this is a xterm feature or a gnome feature or
 neither, but is this something that could be implemented under cygwin xfree?

AFAIR there is some rxvt cole which can do this. Search the mailinglist 
archives.
The keyword tabbed xterm or xterm tabs should help.

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723


Re: Tabbed xterm

2005-04-25 Thread Michel Bardiaux
Scott Cegielski wrote:
I use ws3 under linux at work and have gotten really used to using gnome's
tabbed shells.  I don't know if this is a xterm feature or a gnome feature or
neither, but is this something that could be implemented under cygwin xfree?
Scott Cegielski
[EMAIL PROTECTED]
Tabbed shells also exist in KDE's konsole, and KDE runs under cygwin.
--
Michel Bardiaux
Peaktime Belgium S.A.  Bd. du Souverain, 191  B-1160 Bruxelles
Tel : +32 2 790.29.41


Re: Tabbed xterm

2005-04-25 Thread Charles Plager
On Sun, 24 Apr 2005, Scott Cegielski wrote:
I use ws3 under linux at work and have gotten really used to using gnome's
tabbed shells.  I don't know if this is a xterm feature or a gnome feature or
neither, but is this something that could be implemented under cygwin xfree?
AFAIR there is some rxvt cole which can do this. Search the mailinglist 
archives.
The keyword tabbed xterm or xterm tabs should help.
mrxvt is 'rxvt console' you're looking for:
http://materm.sourceforge.net/ is the homepage
I downloaded mrxvt-0.4.0.tar.gz,
http://prdownloads.sourceforge.net/materm/mrxvt-0.4.0.tar.gz?download
configured as told to do in the README file,
http://materm.sourceforge.net/docs/README
./configure --enable-everything --disable-debug
then 'make' and 'make install'.
Cheers,
  Charles