Re: xterm not accepting Window Title name changes

2007-10-22 Thread Paul McFerrin


Hum...  The PS1 setting. Nope, that's not the problem.

The root of the settitle() function is NOT the setting of PS1.  It's 
setting in /etc/profile is commented out.  In my local .profile, PS1 is 
set to just '$PWD'.  I have verified that there are no other hidden 
settings of PS1.


I tried your settitle() function, and the title remains unchanged: 
basename of the shell.


My posting in the archives envolves the use of 'rxvt' only and has 
nothing to do with xterm.  I always startup 'startxwin.sh' from a 
non-rxvt window (e.g. the console window).


Regardless what shell I'm using, it always seems to get it's basename 
into the window.  Hum


Does anyone else want to try a stab at this problem?

Brian Dessent wrote:

Paul McFerrin wrote:

  

I can't seem to get xterm to recognize Window Title name changes via the
following:

echo "\0332;new_title\07\c"



You were just recently posting in the thread where this came up before:
 and
.  Specifically, the
default Cygwin prompt (PS1) contains characters that set the title so
anything you do that doesn't involve changing PS1 will have no effect --
or more precisely, your echo command above does set the title for a few
milliseconds, until the next prompt overwrites it.   (In your rxvt
example, you aren't starting a login shell and thus /etc/profile isn't
sourced and PS1 isn't set, which is presumably why it works there.)

Brian

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/

  


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: xterm not accepting Window Title name changes

2007-10-22 Thread Brian Dessent
Paul McFerrin wrote:

> I can't seem to get xterm to recognize Window Title name changes via the
> following:
> 
> echo "\0332;new_title\07\c"

You were just recently posting in the thread where this came up before:
 and
.  Specifically, the
default Cygwin prompt (PS1) contains characters that set the title so
anything you do that doesn't involve changing PS1 will have no effect --
or more precisely, your echo command above does set the title for a few
milliseconds, until the next prompt overwrites it.   (In your rxvt
example, you aren't starting a login shell and thus /etc/profile isn't
sourced and PS1 isn't set, which is presumably why it works there.)

Brian

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Christopher Faylor
On Mon, Oct 22, 2007 at 10:00:21PM -0400, Paul McFerrin wrote:
> I'm not SPAMing.  I was having problems in getting on this mailing list 
> thus the duplicates (I wan't seeing them).

You didn't seem to read what I wrote or follow the link that I provided.

I pointed you at the answer to your question from when you asked it the
first time.  You ARE spamming the list when you ask exactly the same
question twice in the span of a couple of days and there is no reason to
do that since you can find the answer to your question in the archives
regardless of any difficulties you had subscribing.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Paul McFerrin
I like your scrollbar.translations!  Works better than interchanging the 
functions of buttone #2 and #3.


Thanks.

Thomas Dickey wrote:

On Mon, 22 Oct 2007, Paul McFerrin wrote:

Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am 
still missing the X(7) man page.  Where can I find one?


With xterm, the middle mouse button is essentailly a soft-scroll in 
that the scroll bars moves with the mouse pointer.  I would like to 
make it mouse button 3 instead but only in xterm.  How can I do that 
in the ..Xdefaults file.


There is a related example in the manpage (for xterm), e.g.,

http://invisible-island.net/xterm/manpage/xterm.html

Some people prefer using the left pointer button for dragging the 
scrollbar thumb. That can be setup by altering the translations 
resource, e.g.,

*VT100.scrollbar.translations:#override \n\
 :StartScroll(Forward) \n\
 :StartScroll(Continuous) MoveThumb() NotifyThumb() \n\
 :StartScroll(Backward) \n\
 :MoveThumb() NotifyThumb() \n\
 :  NotifyScroll(Proportional) EndScroll()




--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



xterm not accepting Window Title name changes

2007-10-22 Thread Paul McFerrin

Hi:

I can't seem to get xterm to recognize Window Title name changes via the 
following:


   echo "\0332;new_title\07\c"

I have added the following new lines to my .Xdefaults file with no effect.

   XTerm.AllowTitleOps:true
   XTerm.AllowTitleOps: true
   XTerm.allowTitleOps: true
   XTerm.allowWindowOps:true
   XTerm.AllowWindowOps:true
   XTerm.vt100.AllowTitleOps:  true
   XTerm.vt100.AllowTitleOps:   true
   XTerm.vt100.allowTitleOps:   true
   XTerm.vt100.allowWindowOps:  true
   XTerm.vt100.AllowWindowOps:  true
   VT100.AllowTitleOps: true
   VT100.allowTitleOps: true
   VT100.allowWindowOps:true
   VT100.AllowWindowOps:true
   XTerm.vt100.utf8Title:   true
   VT100.AllowTitleOps:true

and I have modified my "startxwin.sh script to start xterm the following 
way:


   xterm -aw -b 5 +cm -rw -sb -sk  -sl 1500 -rv -e /usr/bin/ksh -l &

I thought it was working yesterday, but at this point I can't remember 
very much!  Yesterday, I only had the:


  XTerm.AllowTitleOps:true

line in .Xdefaults and I thought it was working

What am I doing wrong??


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Paul McFerrin
I'm not SPAMing.  I was having problems in getting on this mailing list 
thus the duplicates (I wan't seeing them).


I know there are a number of Internet resources for X man page.  I'm 
looking for *real* man pages for X that I can install in one of my "man" 
directories on my system.   HTML files do not work well!   On the 
internet, you will find several variations from a standard.  From a 
person learning X, you don't want to know about those variations in the 
beginning.  An experience person can easily weed out what does not 
work.  Man pages provide more helpful information than "-help" or "--help".


It's been 10 years since I've used X.  I've really lost a lot so I'm a 
beginner again.


Not only is the "X" man page missing, the "xmodmap", "XWin", and "xinit" 
man pages are missing too.


Christopher Faylor wrote:

On Mon, Oct 22, 2007 at 04:34:13PM -0400, Paul McFerrin wrote:
  

Excuse if this is a duplicate message.  I missed seeing it.



There is no reason to spam the list with duplicate queries.

Use the mailing list archives where you'll find something like this:

http://cygwin.com/ml/cygwin-xfree/2007-10/threads.html#00046

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/

  


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Christopher Faylor
On Mon, Oct 22, 2007 at 04:34:13PM -0400, Paul McFerrin wrote:
> Excuse if this is a duplicate message.  I missed seeing it.

There is no reason to spam the list with duplicate queries.

Use the mailing list archives where you'll find something like this:

http://cygwin.com/ml/cygwin-xfree/2007-10/threads.html#00046

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Thomas Dickey

On Mon, 22 Oct 2007, Paul McFerrin wrote:

Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am still 
missing the X(7) man page.  Where can I find one?


With xterm, the middle mouse button is essentailly a soft-scroll in that the 
scroll bars moves with the mouse pointer.  I would like to make it mouse 
button 3 instead but only in xterm.  How can I do that in the ..Xdefaults 
file.


There is a related example in the manpage (for xterm), e.g.,

http://invisible-island.net/xterm/manpage/xterm.html

Some people prefer using the left pointer button for dragging the 
scrollbar thumb. That can be setup by altering the translations resource, 
e.g.,

*VT100.scrollbar.translations:#override \n\
 :StartScroll(Forward) \n\
 :StartScroll(Continuous) MoveThumb() NotifyThumb() \n\
 :StartScroll(Backward) \n\
 :MoveThumb() NotifyThumb() \n\
 :  NotifyScroll(Proportional) EndScroll()


--
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Where is X(7) man page, ques about but#2

2007-10-22 Thread Paul McFerrin
Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am 
still missing the X(7) man page.  Where can I find one?


With xterm, the middle mouse button is essentailly a soft-scroll in that 
the scroll bars moves with the mouse pointer.  I would like to make it 
mouse button 3 instead but only in xterm.  How can I do that in the 
.Xdefaults file.


_ Paul McFerin

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Where is X(7) man page, ques about but#2

2007-10-22 Thread Paul McFerrin
Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am 
still missing the X(7) man page.  Where can I find one?


With xterm, the middle mouse button is essentailly a soft-scroll in that 
the scroll bars moves with the mouse pointer.  I would like to make it 
mouse button 3 instead but only in xterm.  How can I do that in the 
.Xdefaults file.


_ Paul McFerin


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Where is X(7) man page, ques about but#2

2007-10-22 Thread Holger Krull
Paul McFerrin schrieb:

> Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am
> still missing the X(7) man page.  Where can I find one?

it is
 man XWin

 


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



xterms dropping keypresses events

2007-10-22 Thread Oscar Usifer
Folks,

While running startx xterms, I'm finding that keypress events are being dropped 
while typing regular shell commands at the prompt (e.g. 'ls -aFl', 'find . 
-name \*.java -exec ls -aFl {} \;', 'vim myfile.c'). A character would be 
dropped, causing me to have to resend the same keypress. I'm looking for a way 
to diagnose what's going on. Any ideas?

Thanks,
OSC

[EMAIL PROTECTED] ~
$ cygcheck.exe -c 
Cygwin Package Information
Package  VersionStatus
_update-info-dir 00550-1OK
alternatives 1.3.29a-1  OK
ash  20040127-3 OK
base-files   3.7-1  OK
base-passwd  2.2-1  OK
bash 3.2.25-16  OK
bzip21.0.3-2OK
coreutils6.9-5  OK
crypt1.1-1  OK
cygrunsrv1.17-1 OK
cygutils 1.3.2-1OK
cygwin   1.5.24-2   OK
cygwin-doc   1.4-4  OK
editrights   1.01-1 OK
expat1.95.8-2   OK
findutils4.3.8-1OK
fontconfig   2.4.1-5OK
freetype22.3.4-2OK
gawk 3.1.5-4OK
gettext  0.15-1 OK
grep 2.5.1a-4   OK
groff1.18.1-2   OK
gzip 1.3.12-2   OK
less 382-1  OK
libbz2_1 1.0.3-2OK
libexpat01.95.8-2   OK
libfontconfig1   2.4.1-5OK
libfreetype262.3.4-2OK
libiconv21.11-1 OK
libintl1 0.10.40-1  OK
libintl2 0.12.1-3   OK
libintl3 0.14.5-1   OK
libintl8 0.15-1 OK
libncurses7  5.3-4  OK
libncurses8  5.5-3  OK
libpcre0 7.2-1  OK
libpopt0 1.6.4-4OK
libreadline6 5.2.7-9OK
libXft   2.1.6-1OK
libXft1  1.0.0-1OK
libXft2  2.1.6-1OK
login1.9-7  OK
man  1.6e-1 OK
minires  1.01-1 OK
mktemp   1.5-4  OK
openssh  4.7p1-2OK
openssl  0.9.8e-3   OK
pcre 7.2-1  OK
rebase   2.4.3-1OK
run  1.1.10-1   OK
sed  4.1.5-2OK
tar  1.18-2 OK
termcap  20050421-1 OK
terminfo 5.5_20061104-1 OK
texinfo  4.8a-1 OK
vim  7.1-1  OK
which1.7-1  OK
X-startup-scripts1.0.11-1   OK
XFree86-lib-compat   4.3.0-2OK
xorg-x11-base6.8.99.901-1   OK
xorg-x11-bin 6.8.99.901-1   Incomplete
xorg-x11-bin-dlls6.8.99.901-1   OK
xorg-x11-bin-lndir   6.8.99.901-1   OK
xorg-x11-etc 6.8.99.901-1   OK
xorg-x11-fenc6.8.99.901-1   OK
xorg-x11-fnts6.8.99.901-1   OK
xorg-x11-libs-data   6.8.99.901-1   OK
xorg-x11-xwin6.8.99.901-1   OK
xorg-x11-xwin-gl 6.8.99.901-1   OK
xterm229-1  OK
zlib 1.2.3-2OK



-- 
Want an e-mail address like mine?
Get a free e-mail account today at www.mail.com!


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Where is X(7) man page, ques about but#2

2007-10-22 Thread Paul McFerrin

Excuse if this is a duplicate message.  I missed seeing it.

Under cygwin, I installed *ALL* of the xorg-x11-* packages but I am 
still missing the X(7) man page.  Where can I find one?


With xterm, the middle mouse button is essentailly a soft-scroll in that 
the scroll bars moves with the mouse pointer.  I would like to make it 
mouse button 3 instead but only in xterm.  How can I do that in the 
.Xdefaults file.


_ Paul McFerin

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread Christopher Faylor
On Mon, Oct 22, 2007 at 10:43:54AM -0700, Hall Nation wrote:
>Thanks for the clarification mate ...
>Now I know ... 

And you would have known this before because it had already been
described to you before.  I hope that future communications will not
require this type of repetition.

And, please note that discussion of xargs is off-topic for this list.
If you actually now do know understand xargs, then I don't have to tell
you why.

cgf

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread Hall Nation
Thanks for the clarification mate ...
Now I know ... 

- Original Message 
From: Mark J. Reed <[EMAIL PROTECTED]>
To: cygwin-xfree@cygwin.com
Sent: Monday, October 22, 2007 10:06:45 PM
Subject: Re: Xargs


On 10/22/07, Hall Nation <[EMAIL PROTECTED]> wrote:
> I just couldn't get what was described abt xargs in man ,,,  I mean I
 need it in simple terms.. (layman terms)

xargs has nothing to do with X11, first of all.  The "x" in this case
means "trans", as in "transpose", which is the operation that takes a
vertical column and turns it into a horizontal row.

Say you have a file named x.txt with these lines in it:

 x1
 x2
 x3

Now say you run this:

   xargs echo 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/





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


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread Mark J. Reed
On 10/22/07, Hall Nation <[EMAIL PROTECTED]> wrote:
> I just couldn't get what was described abt xargs in man ,,,  I mean I need it 
> in simple terms.. (layman terms)

xargs has nothing to do with X11, first of all.  The "x" in this case
means "trans", as in "transpose", which is the operation that takes a
vertical column and turns it into a horizontal row.

Say you have a file named x.txt with these lines in it:

 x1
 x2
 x3

Now say you run this:

   xargs echo 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XWin Multiwindow fails to start

2007-10-22 Thread Nick Douma
On Mon, Oct 22, 2007 at 05:11:12PM +0200, Holger Krull wrote:
> Nick Douma schrieb:
> > No one who has any suggestions... ?
> 
> Not for your main problem. Just the general idea that sometimes deleting and 
> reinstalling helps to solve strange problems. 
I'll try that tomorrow

>  
> > On Tue, Oct 16, 2007 at 11:38:33AM +0200, Nick Douma wrote:
> >> I'm using the latest version of Cygwin, and Xwin 6.8.99.901-4. Whenever I 
> >> try to run X with `startx` or startx 
> >> scripts, it fails. If I run it directly with `X :0` it works fine (so it 
> >> appears), but when I run it with `X :0 
> >> -multiwindow` it fails with the following log:
> >>
> >> Also, when I run it with the `X :0` command, the DISPLAY var is not set, 
> >> and xterm does not start up 
> >> automatically.
> 
> That is no surprise, the DISPLAY variable doesn't set itself, you need a 
> script to do that. The same with the starting of xterm, if you just start the 
> X11 server, it will not start an xterm.
Sounds logical, I guess that is one of the uses for the startx scripts

> 
> 
> --
> Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
> Problem reports:   http://cygwin.com/problems.html
> Documentation: http://x.cygwin.com/docs/
> FAQ:   http://x.cygwin.com/docs/faq/
> 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread Hall Nation
Who's a troll ?
I'm new here .. I was facing issues while joining and tried sending this 
message long back but couldn't as I was facing issues.
Probably that msg had gone to u ppl before..
And guys I do know of google/man .. 
I just couldn't get what was described abt xargs in man ,,,  I mean I need it 
in simple terms.. (layman terms)


I also would like to know what this does ...
/bin/find . -type f |xargs grep


- Original Message 
From: Holger Krull <[EMAIL PROTECTED]>
To: cygwin-xfree@cygwin.com
Sent: Monday, October 22, 2007 8:10:31 PM
Subject: Re: Xargs


xerces8 schrieb:
> From: Hall Nation <[EMAIL PROTECTED]>
>> I need to know about the xargs command. What does it do ?
> 
> You also need to know about the "man" command.
> And google ;-)
> 

Is this a replay of older messages? Didn't we have that before?
That man is a troll or a bot.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/





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


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XWin Multiwindow fails to start

2007-10-22 Thread Holger Krull
Nick Douma schrieb:
> No one who has any suggestions... ?

Not for your main problem. Just the general idea that sometimes deleting and 
reinstalling helps to solve strange problems. 
 
> On Tue, Oct 16, 2007 at 11:38:33AM +0200, Nick Douma wrote:
>> I'm using the latest version of Cygwin, and Xwin 6.8.99.901-4. Whenever I 
>> try to run X with `startx` or startx 
>> scripts, it fails. If I run it directly with `X :0` it works fine (so it 
>> appears), but when I run it with `X :0 
>> -multiwindow` it fails with the following log:
>>
>> Also, when I run it with the `X :0` command, the DISPLAY var is not set, and 
>> xterm does not start up 
>> automatically.

That is no surprise, the DISPLAY variable doesn't set itself, you need a script 
to do that. The same with the starting of xterm, if you just start the X11 
server, it will not start an xterm.


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: XWin Multiwindow fails to start

2007-10-22 Thread Nick Douma
No one who has any suggestions... ?

On Tue, Oct 16, 2007 at 11:38:33AM +0200, Nick Douma wrote:
> I'm using the latest version of Cygwin, and Xwin 6.8.99.901-4. Whenever I try 
> to run X with `startx` or startx 
> scripts, it fails. If I run it directly with `X :0` it works fine (so it 
> appears), but when I run it with `X :0 
> -multiwindow` it fails with the following log:
> 
> $ startx
> 
> Welcome to the XWin X Server
> Vendor: The Cygwin/X Project
> Release: 6.8.99.901-4
> 
> Contact: cygwin-xfree@cygwin.com
> 
> XWin was started with the following command line:
> 
> X :0 -multiwindow
> 
> (WW) /tmp mounted int textmode
> _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root
> winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1
> (II) XF86Config is not supported
> (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information
> winDetectSupportedEngines - Windows NT/2000/XP
> winDetectSupportedEngines - DirectDraw installed
> winDetectSupportedEngines - DirectDraw4 installed
> winDetectSupportedEngines - Returning, supported engines 0007
> winSetEngine - Multi Window or Rootless => ShadowGDI
> winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel
> winAllocateFBShadowGDI - Creating DIB with width: 1280 height: 1024 depth: 32
> winFinishScreenInitFB - Masks: 00ff ff00 00ff
> winInitVisualsShadowGDI - Masks 00ff ff00 00ff BPRGB 8 d 24 bpp 32
> null screen fn ReparentWindow
> null screen fn RestackWindow
> InitQueue - Calling pthread_mutex_init
> InitQueue - pthread_mutex_init returned
> InitQueue - Calling pthread_cond_init
> InitQueue - pthread_cond_init returned
> winInitMultiWindowWM - Hello
> winMultiWindowXMsgProc - Hello
> winInitMultiWindowWM - Calling pthread_mutex_lock ()
> winMultiWindowXMsgProc - Calling pthread_mutex_lock ()
> MIT-SHM extension disabled due to lack of kernel support
> XFree86-Bigfont extension local-client optimization disabled due to lack of 
> shared memory support in the kernel
> (--) Setting autorepeat to delay=500, rate=31
> (--) winConfigKeyboard - Layout: "00020409" (00020409)
> (--) Using preset keyboard for "English (USA, International)" (20409), type 
> "4"
> Rules = "xorg" Model = "pc105" Layout = "us_intl" Variant = "(null)" Options 
> = "(null)"
> The XKEYBOARD keymap compiler (xkbcomp) reports:
> > Error:Can't find file "pc/us_intl" for symbols include
> >   Exiting
> >   Abandoning symbols file "default"
> Errors from xkbcomp are not fatal to the X server
> (--) 3 mouse buttons found
> Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from 
> list!
> winPointerWarpCursor - Discarding first warp: 640 512
> winInitMultiWindowWM - pthread_mutex_lock () returned.
> winProcEstablishConnection - Hello
> winProcEstablishConnection - Clipboard is not enabled, returning.
> winInitMultiWindowWM - pthread_mutex_unlock () returned.
> winMultiWindowXMsgProc - pthread_mutex_lock () returned.
> winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0
> winMultiWindowXMsgProc - pthread_mutex_unlock () returned.
> winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0
> cat: /cygdrive/x/.Xauthority: No such file or directory
> 
> winMultiWindowXMsgProcIOErrorHandler!
> 
>  11 [unknown (0xB88)] X 1864 _cygtls::handle_exceptions: Error while 
> dumping state (probably corrupted 
> stack)
> xinit:  connection to X server lost.
> 
> 
> Also, when I run it with the `X :0` command, the DISPLAY var is not set, and 
> xterm does not start up 
> automatically.
> 
> --
> Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
> Problem reports:   http://cygwin.com/problems.html
> Documentation: http://x.cygwin.com/docs/
> FAQ:   http://x.cygwin.com/docs/faq/
> 

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread Holger Krull
xerces8 schrieb:
> From: Hall Nation <[EMAIL PROTECTED]>
>> I need to know about the xargs command. What does it do ?
> 
> You also need to know about the "man" command.
> And google ;-)
> 

Is this a replay of older messages? Didn't we have that before?
That man is a troll or a bot.

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Re: Xargs....

2007-10-22 Thread xerces8
From: Hall Nation <[EMAIL PROTECTED]>
> I need to know about the xargs command. What does it do ?

You also need to know about the "man" command.
And google ;-)

Regards,
David

PS: Hint : type : man man 
then : man xargs



--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/



Xargs....

2007-10-22 Thread Hall Nation

I am new to cygwin/X.

Using the above setup at the workplace..
I need to know about the xargs command. What does it do ?



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


--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://x.cygwin.com/docs/
FAQ:   http://x.cygwin.com/docs/faq/