Re: Magic mouse movement

2002-02-23 Thread M.G. Houtman
This sounds like the same behaviour what happens when you unplug a ps/2 mouse while X is running, and re-plug it in. Can't it be a mouse problem? -- tinus

Re: reduce to titlebar

2002-02-23 Thread David Terrell
On Mon, Feb 18, 2002 at 06:53:39PM -0500, Jan Schaumann wrote: David Terrell [EMAIL PROTECTED] wrote: I'm trying to get completely set up with a no-mouse-required existance. Somebody else already answered your shading question, but I thought you might be interested in a not-so-popular

Re: bblaunch

2002-02-23 Thread Johan Ronström
--- Andy Kopciuch [EMAIL PROTECTED] wrote: note it is a warning, not an error. What is actually happening is the bblaunch code is rather sloppy. The fix is easy. The reason it is complaining is because it tries to read its own window which does not have all of the hints set.

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Jamin W . Collins
On Fri, 22 Feb 2002 12:27:05 -0800 (PST) Sean 'Shaleh' Perry [EMAIL PROTECTED] wrote: On 22-Feb-2002 Jeremy C. Reed wrote: Or maybe a simple shell tool using xlsclients and xprop could do this? (But not runing all the time.) this could work too. But I am not sure if xprop(1) can

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Jamin W . Collins
On Sat, 23 Feb 2002 19:33:57 -0600 Jamin W. Collins [EMAIL PROTECTED] wrote: Well, here's a quick stab, for those of you interested. It locates all windows (at least those reported by xlsclients) and starts gathering information about them. Then stores this information in~/.bbsession. In

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Russ Burdick
On Sat, Feb 23, 2002 at 08:09:20PM -0600, Jamin W. Collins wrote: Apps I've found exhibiting this problem: can add mozilla-0.9.8 to the list. simple enough to add that into .bbsession after capturing the info on all the other apps though. Russ --

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread cthulhain
please change #!/bin/sh at the top of your script to #!/bin/bash because of the following: WINDOW_IDS=(`xlsclients -l | grep Window | sed s/Window // | sed s/://`) another thing is that you do not need to have the line #!/bin/sh at the top of the ~/.bbsession file. this file should be sourced,

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread John Kennison
On Sat, 23 Feb 2002 20:09:20 -0600 Jamin W. Collins [EMAIL PROTECTED] wrote: The script as posted should echo information it gathers about the running applications. If there is no information on the Blackbox Attributes line, there will be no entry made in the ~/.bbsession file. Can also

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Jamin W . Collins
On Sat, 23 Feb 2002 21:49:45 -0500 cthulhain [EMAIL PROTECTED] wrote: please change #!/bin/sh at the top of your script to #!/bin/bash because of the following: (snip) another thing is that you do not need to have the line #!/bin/sh at the top of the ~/.bbsession file. this file should be

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Jan Schaumann
cthulhain [EMAIL PROTECTED] wrote: please change #!/bin/sh at the top of your script to #!/bin/bash because of the following: WINDOW_IDS=(`xlsclients -l | grep Window | sed s/Window // | sed s/://`) I'd rather see it adjusted to work with /bin/sh than having it require bash. Some systems

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Ben Neuman
On Sat, 23 Feb 2002 21:27:48 -0600 Jamin W.Collins [EMAIL PROTECTED] wrote: On Sat, 23 Feb 2002 21:49:45 -0500 cthulhain [EMAIL PROTECTED] wrote: please change #!/bin/sh at the top of your script to #!/bin/bash because of the following: (snip) another thing is that you do not need to

Re: Magic mouse movement

2002-02-23 Thread Brian Clark
* Roger Sondermann ([EMAIL PROTECTED]) [Feb 23. 2002 13:59]: Here it is (for my MS IntelliMouse with wheel): Would that happen to be an optical mouse? I have the exact same problem and I'm not running gpm either. It functions normally most of the time, but it seems to do weird things under

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread David Egan Evans
On Sat, 23 Feb 2002, Ben Neuman wrote: (snip) bashism! bashism bad! bashisms make me very cranky. bashisms make me install bash. bash makes me unhappy. Gotta say it: I feel the same way. I'm a true kornshell lover (ksh93!), and gotta make it a flame war :-). Bash does have the posix thing

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Kyle Donaldson
On Sat, 23 Feb 2002, Jan Schaumann wrote: cthulhain [EMAIL PROTECTED] wrote: please change #!/bin/sh at the top of your script to #!/bin/bash because of the following: WINDOW_IDS=(`xlsclients -l | grep Window | sed s/Window // | sed s/://`) I'd rather see it adjusted to work with

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread David Egan Evans
On Sat, 23 Feb 2002, Sean 'Shaleh' Perry wrote: Date: Sat, 23 Feb 2002 21:47:26 -0800 (PST) From: Sean 'Shaleh' Perry [EMAIL PROTECTED] To: David Egan Evans [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: bbsnapshot idea for some intrepid programmer On 24-Feb-2002 David Egan Evans

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Sean 'Shaleh' Perry
Somehow, I'm not surprised. I've not been impressed with bash. It's ironic that they claim to aspire to ieee 1003.2 compliance, and claim that most posix scripts should run in bash without modification. I rarely have got bourne shell scripts to run correctly in bash without significant

Re: bbsnapshot idea for some intrepid programmer

2002-02-23 Thread Jim Knoble
Circa 2002-Feb-24 00:51:21 -0500 dixit Kyle Donaldson: : On Sat, 23 Feb 2002, Jan Schaumann wrote: : I'm no sh-wiz, but wouldn't : : WINDOW_IDS=`xlsclients -l | grep Window | sed s/Window // | sed s/://` : : work in /bin/sh work? : : It should, but I would place it inside double-quotes,