mrxvt and hotkeys - Please help!!!!!!!!!!!!!!!!!

2005-05-11 Thread Markus Jung
Hi List!

Thank you Scott for opening the discussion that brought up that great 
termial mrxvt.
It supports and it's working with transparent backround without that 
refresh problem 
I had with other terms!!! YEAH!!!

But theres one thing I can't get to work. The hotkeys to change tabs or 
something.
Has anyone get this working on cygwin X and how?? With which Key 
definition??

Thanks,

Markus


Re: mrxvt and hotkeys

2005-05-11 Thread Charles Plager
Markus Jung wrote:
Hi List!
Thank you Scott for opening the discussion that brought up that great 
termial mrxvt.
It supports and it's working with transparent backround without that 
refresh problem 
I had with other terms!!! YEAH!!!

But theres one thing I can't get to work. The hotkeys to change tabs or 
something.
Has anyone get this working on cygwin X and how?? With which Key 
definition??
I usually use Exceed and not the cygwin X server, but the Gnome settings 
as described in doc/TIPS work for me:

Gnome-terminal style default hotkeys:
Ctrl_Shift_t: create a new tab
Ctrl_Shift_w: close active tab
Ctrl_PgUp   : activate left tab
Ctrl_PgDn   : activate right tab
Meta_1  : activate 1st tab
...
Meta_9  : activate 9th tab
Ctrl_Shift_+: increase font size (next font)
Ctrl_=  : increase font size (next font)
Ctrl_Shift__: decrease font size (previous font)
Ctrl_-  : decrease font size (previous font)
Cheers,
  Charles


Re: rdesktop build on cygwin gone wrong

2005-05-11 Thread jose isaias cabrera
Sorry for the cross-post, but...
Ok, so I downloaded rdesktop 1.4.1 to build it with cygwin on a WinXP Pro 
machine.  And on the make install, I am getting this error:

jic 16:32:18- make install
mkdir -p /usr/local/bin
/usr/bin/install -c rdesktop /usr/local/bin
strip /usr/local/bin/rdesktop
strip: /usr/local/bin/rdesktop: No such file or directory
make: *** [installbin] Error 1
I've tried it a few times and I still get the the same problem.  Here is the 
interesting part: rdesktop works and the man page also.  Huh!

Any ideas?
thanks,
josé
- Original Message - 
From: David Rothenberger [EMAIL PROTECTED]
To: cygwin-xfree@cygwin.com
Sent: Tuesday, May 03, 2005 6:07 PM
Subject: Re: rdesktop build on cygwin gone wrong


On 5/3/2005 2:42 PM, jose isaias cabrera wrote:
Greetings!
so, I built and used rdesktop with cygwin for a long time, but I had to
rebuild my laptop and now I was trying to build rdesktop with cygwin and
on the
make install
command, an extra / has been added to the path.  Here is the error:
error
jic 17:03:08- make install
mkdir -p //usr/local/bin
/usr/bin/install -c rdesktop //usr/local/bin
/usr/bin/install: cannot create regular file `//usr/local/bin.exe': No 
such
host or network path
make: *** [installbin] Error 1
/error
It seems like a problem with Makefile.in. Apply the attached patch, then
run autoreconf -f  ./configure  make  make install.
--
David Rothenbergerspammer? - [EMAIL PROTECTED]
GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734




--- rdesktop-1.4.0-orig/Makefile.in 2005-03-02 09:34:16.0 -0800
+++ rdesktop-1.4.0/Makefile.in 2005-05-03 15:02:31.86100 -0700
@@ -54,25 +54,24 @@
.PHONY: installbin
installbin: rdesktop
- mkdir -p $(DESTDIR)/$(bindir)
- $(INSTALL) rdesktop $(DESTDIR)/$(bindir)
- strip $(DESTDIR)/$(bindir)/rdesktop
- chmod 755 $(DESTDIR)/$(bindir)/rdesktop
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -s rdesktop $(DESTDIR)$(bindir)
+ chmod 755 $(DESTDIR)$(bindir)/rdesktop
.PHONY: installman
installman: doc/rdesktop.1
- mkdir -p $(DESTDIR)/$(mandir)/man1
- cp doc/rdesktop.1 $(DESTDIR)/$(mandir)/man1
- chmod 644 $(DESTDIR)/$(mandir)/man1/rdesktop.1
+ mkdir -p $(DESTDIR)$(mandir)/man1
+ cp doc/rdesktop.1 $(DESTDIR)$(mandir)/man1
+ chmod 644 $(DESTDIR)$(mandir)/man1/rdesktop.1
.PHONY: installkeymaps
installkeymaps:
- mkdir -p $(DESTDIR)/$(KEYMAP_PATH)
+ mkdir -p $(DESTDIR)$(KEYMAP_PATH)
# Prevent copying the CVS directory
- cp keymaps/?? keymaps/??-?? $(DESTDIR)/$(KEYMAP_PATH)
- cp keymaps/common $(DESTDIR)/$(KEYMAP_PATH)
- cp keymaps/modifiers $(DESTDIR)/$(KEYMAP_PATH)
- chmod 644 $(DESTDIR)/$(KEYMAP_PATH)/*
+ cp keymaps/?? keymaps/??-?? $(DESTDIR)$(KEYMAP_PATH)
+ cp keymaps/common $(DESTDIR)$(KEYMAP_PATH)
+ cp keymaps/modifiers $(DESTDIR)$(KEYMAP_PATH)
+ chmod 644 $(DESTDIR)$(KEYMAP_PATH)/*
.PHONY: proto
proto:



Re: rdesktop build on cygwin gone wrong

2005-05-11 Thread David Rothenberger
On 5/11/2005 4:07 PM, jose isaias cabrera wrote:
Sorry for the cross-post, but...
Ok, so I downloaded rdesktop 1.4.1 to build it with cygwin on a WinXP 
Pro machine.  And on the make install, I am getting this error:

jic 16:32:18- make install
mkdir -p /usr/local/bin
/usr/bin/install -c rdesktop /usr/local/bin
strip /usr/local/bin/rdesktop
strip: /usr/local/bin/rdesktop: No such file or directory
make: *** [installbin] Error 1
I've tried it a few times and I still get the the same problem.  Here is 
the interesting part: rdesktop works and the man page also.  Huh!

Any ideas?
It's because the makefile really needs to invoke strip 
/usr/local/bin/rdesktop.exe Strip just removes any debugging symbols, 
so the executable without the strip will work fine, it just might be 
larger than you need.

To fix the problem, you can apply the supplied patch, or just run strip 
/usr/local/bin/rdesktop.exe.

--
David Rothenbergerspammer? - [EMAIL PROTECTED]
GPG/PGP: 0x7F67E734, C233 365A 25EF 2C5F C8E1 43DF B44F BA26 7F67 E734
I don't think it's worth washing hogs over.
 -- Larry Wall in [EMAIL PROTECTED]
diff -u -r -N rdesktop-1.4.1-orig/Makefile.in rdesktop-1.4.1/Makefile.in
--- rdesktop-1.4.1-orig/Makefile.in 2005-05-04 13:32:16.0 -0700
+++ rdesktop-1.4.1/Makefile.in  2005-05-11 16:51:21.78175 -0700
@@ -55,8 +55,7 @@
 .PHONY: installbin
 installbin: rdesktop
mkdir -p $(DESTDIR)$(bindir)
-   $(INSTALL) rdesktop $(DESTDIR)$(bindir)
-   strip $(DESTDIR)$(bindir)/rdesktop
+   $(INSTALL) -s rdesktop $(DESTDIR)$(bindir)
chmod 755 $(DESTDIR)$(bindir)/rdesktop
 
 .PHONY: installman


Problems with startxwin.bat

2005-05-11 Thread Johan Wickström
I have pretty much the same problem as José Cabrera.

I am running this startxwin.bat from Windows XP:

@echo off
SET DISPLAY=127.0.0.1:0.0


REM
REM The path in the CYGWIN_ROOT environment variable assignment assume
REM that Cygwin is installed in a directory called 'cygwin' in the root
REM directory of the current drive.  You will only need to modify
REM CYGWIN_ROOT if you have installed Cygwin in another directory.  For
REM example, if you installed Cygwin in \foo\bar\baz\cygwin, you will need
REM to change \cygwin to \foo\bar\baz\cygwin.
REM
REM This batch file will almost always be run from the same drive (and
REM directory) as the drive that contains Cygwin/X, therefore you will
REM not need to add a drive letter to CYGWIN_ROOT.  For example, you do
REM not need to change \cygwin to c:\cygwin if you are running this
REM batch file from the C drive.
REM

SET CYGWIN_ROOT=\cygwin

SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH%

SET XAPPLRESDIR=/usr/X11R6/lib/X11/app-defaults
SET XCMSDB=/usr/X11R6/lib/X11/Xcms.txt
SET XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB
SET XNLSPATH=/usr/X11R6/lib/X11/locale


REM
REM Cleanup after last run.
REM

if not exist %CYGWIN_ROOT%\tmp\.X11-unix\X0 goto CLEANUP-FINISH
attrib -s %CYGWIN_ROOT%\tmp\.X11-unix\X0
del %CYGWIN_ROOT%\tmp\.X11-unix\X0

:CLEANUP-FINISH
if exist %CYGWIN_ROOT%\tmp\.X11-unix rmdir %CYGWIN_ROOT%\tmp\.X11-unix


REM
REM The error Fatal server error: could not open default font 'fixed' is
REM caused by using a DOS mode mount for the mount that the Cygwin/X
REM fonts are accessed through.  See the Cygwin/X FAQ for more
REM information:
REM http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof
REM

if %OS% == Windows_NT goto OS_NT

REM Windows 95/98/Me
echo startxwin.bat - Starting on Windows 95/98/Me

goto STARTUP

:OS_NT

REM Windows NT/2000/XP/2003
echo startxwin.bat - Starting on Windows NT/2000/XP/2003

:STARTUP

REM Brief descriptions of XWin-specific options:
REM
REM -screen scr_num [width height]
REM  Enable screen scr_num and optionally specify a width and
REM  height for that screen.
REM  Most importantly, any parameters specified before the first -screen
REM  parameter apply to all screens.  Any options after the first -screen
REM  parameter apply only to the screen that precedes the parameter.
REM  Example:
REM  XWin -fullscreen -screen 0 -screen 1 -depth 8 -screen 2
REM  All screens will be fullscreen, but screen 2 will be depth 8, while
REM  screens 0 and 1 will be the default depth (whatever depth Windows
REM  is currently running at).
REM -multiwindow
REM  Start an integrated Windows-based window manager.  Not to be used
REM  with -rootless nor -fullscreen.
REM -rootless
REM  Use a transparent root window with an external window manager
REM  (such as twm).  Not to be used with -multiwindow nor
REM  with -fullscreen.
REM -fullscreen
REM  Use a window as large as possible on the primary monitor.
REM -multiplemonitors
REM  Create a root window that covers all monitors on a
REM  system with multiple monitors.
REM -clipboard
REM  Enable the integrated version of xwinclip.  Do not use in
REM  conjunction with the xwinclip program.
REM -depth bits_per_pixel
REM  Specify the screen depth to run at (in bits per pixel) using a
REM  DirectDraw-based engine in conjunction with the -fullscreen
REM  option, ignored if the -fullscreen option is not specified.
REM  By default, you will be using a DirectDraw based engine on any
REM  system that supports it.
REM -unixkill
REM  Trap Ctrl+Alt+Backspace as a server shutdown key combination.
REM -nounixkill
REM  Disable Ctrl+Alt+Backspace as a server shutdown key combination
(default).
REM  Example:
REM  XWin -unixkill -screen 0 -screen 1 -screen 2 -nounixkill
REM  Screens 0 and 1 will allow Ctrl+Alt+Backspace, but screen 2 will
not.
REM -winkill
REM  Trap Alt+F4 as a server shutdown key combination (default).
REM -nowinkill
REM  Disable Alt+F4 as a server shutdown key combination.
REM -scrollbars
REM  Enable resizing of the server display window.  Do not use in
conjunction
REM  with -multiwindow nor with -rootless.
REM -nodecoration
REM  Draw the server root window without a title bar or border.
REM  Do not use with -mutliwindow nor with -rootless.
REM -lesspointer
REM  Hide the Windows mouse cursor anytime it is over any part of the
REM  window, even if Cygwin/X is not the window with the focus.
REM -refresh rate_in_Hz
REM  Specify a refresh rate to use when used with the -fullscreen option.
REM -trayicon
REM  Enable the tray icon (default).
REM -notrayicon
REM  Disable the tray icon.
REM  Example:
REM  XWin -notrayicon -screen 0 -screen 1 -screen 2 -trayicon
REM  Screens 0 and 1 will not have tray icons, but screen 2 will.
REM -emulate3buttons [timeout]
REM  Emulate 3 button mouse with an optional