Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-21 Thread Donald Allen
On Tue, Jul 21, 2009 at 5:06 AM, Szabolcs Nagy wrote: > a patch was pushed to the repository that should fix your issue with > enabled xinerama > > can you please test the hg tip version of dwm? Ok. I'll let you know the result when I do. /Don > > http://code.suckless.org/hg/dwm/ > >

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-21 Thread Szabolcs Nagy
a patch was pushed to the repository that should fix your issue with enabled xinerama can you please test the hg tip version of dwm? http://code.suckless.org/hg/dwm/

Re: [dev] dwm-5.6

2009-07-20 Thread Szabolcs Nagy
On 7/20/09, sqweek wrote: >> for example >> (double)atoi("1")/atoi("3") == (double)atoi("1")/atoi("3") >> gives false with gcc on my x86 machine eventhough the two expressions >> are semantically equivalent > > Interesting indeed, I get the same result here. However, if you store > the division r

Re: [dev] dwm-5.6

2009-07-20 Thread sqweek
2009/7/18 Szabolcs Nagy : > my problem was that it seems that c and ieee754 does not even require > that the arithmetic operations are well defined: same operation on > same numbers with same type does not necessary give the same result > (even on same architecture with same compiler) > > for examp

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Szabolcs Nagy
On 7/20/09, Donald Allen wrote: > Thanks -- it's in the README, which , of course, I didn't read. Should > be in the man page, though, IMHO. In any case, the suggested code ok, man is updated i think a 5.6.1 will come out soon..

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Donald Allen
On Mon, Jul 20, 2009 at 11:27 AM, Anselm R Garbe wrote: > 2009/7/20 Donald Allen : >> On Mon, Jul 20, 2009 at 10:56 AM, Anselm R Garbe wrote: >>> 2009/7/20 Anselm R Garbe : 2009/7/20 Donald Allen : > I installed dwm 5.4.1 from the openbsd package on my Thinkpad X61 > running openbsd 4.

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Donald Allen
Anselm -- By the way, my compliments on your work. I'm of the minimalist persuasion when it comes to almost anything involving computers. I much prefer to start with a small environment and add just what I need and no more. So, of course, I can't stand Windows (for many, many reasons, but its bloa

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Anselm R Garbe
2009/7/20 Donald Allen : > On Mon, Jul 20, 2009 at 10:56 AM, Anselm R Garbe wrote: >> 2009/7/20 Anselm R Garbe : >>> 2009/7/20 Donald Allen : I installed dwm 5.4.1 from the openbsd package on my Thinkpad X61 running openbsd 4.5 (amd64). Works fine, no issues, other than attempts to p

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Donald Allen
On Mon, Jul 20, 2009 at 11:06 AM, Szabolcs Nagy wrote: > On 7/20/09, Donald Allen wrote: >> running openbsd 4.5 (amd64). Works fine, no issues, other than >> attempts to pipe the date into stdin not working (I think how to use > this has changed see README in the source (or the man) Thanks -- it'

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Donald Allen
On Mon, Jul 20, 2009 at 10:56 AM, Anselm R Garbe wrote: > 2009/7/20 Anselm R Garbe : >> 2009/7/20 Donald Allen : >>> I installed dwm 5.4.1 from the openbsd package on my Thinkpad X61 >>> running openbsd 4.5 (amd64). Works fine, no issues, other than >>> attempts to pipe the date into stdin not work

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Szabolcs Nagy
On 7/20/09, Donald Allen wrote: > running openbsd 4.5 (amd64). Works fine, no issues, other than > attempts to pipe the date into stdin not working (I think how to use this has changed see README in the source (or the man) > type this. Unlike 5.4.1, left-clicking labels has no effect, other > tha

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Anselm R Garbe
2009/7/20 Anselm R Garbe : > 2009/7/20 Donald Allen : >> I installed dwm 5.4.1 from the openbsd package on my Thinkpad X61 >> running openbsd 4.5 (amd64). Works fine, no issues, other than >> attempts to pipe the date into stdin not working (I think how to use >> the read-from-stdin facility to dis

Re: [dev] dwm-5.6 issues on openbsd 4.5

2009-07-20 Thread Anselm R Garbe
2009/7/20 Donald Allen : > I installed dwm 5.4.1 from the openbsd package on my Thinkpad X61 > running openbsd 4.5 (amd64). Works fine, no issues, other than > attempts to pipe the date into stdin not working (I think how to use > the read-from-stdin facility to display stuff needs to be explained

Re: [dev] dwm-5.6

2009-07-17 Thread Preben Randhol
On Fri, 17 Jul 2009 19:51:47 +0200 Szabolcs Nagy wrote: > my problem was that it seems that c and ieee754 does not even require > that the arithmetic operations are well defined: same operation on > same numbers with same type does not necessary give the same result > (even on same architecture w

Re: [dev] dwm-5.6

2009-07-17 Thread Szabolcs Nagy
On 7/17/09, Preben Randhol wrote: > (float)*w/(float)*h != (float) (w/h) in most cases also... this expression won't even compile: dereference is only allowed for pointers division for numbers if you meant (float)w/h != (float)(w/h) with int w,h, then you are right, the former is floating point

Re: [dev] dwm-5.6

2009-07-17 Thread Preben Randhol
On Fri, 17 Jul 2009 13:51:35 +0200 Szabolcs Nagy wrote: > On 7/17/09, Szabolcs Nagy wrote: > > it turns out the result of those inequalities depend on compiler > > optimization flags (compiler might choose to use double division and > > comparison instead of float one) so with -O0 there are no u

Re: [dev] dwm-5.6

2009-07-17 Thread Arun G Nair
2009/7/17 Tadzik Sośnierz > Dnia 2009-07-17, o godz. 00:21:51 > Arun G Nair napisał(a): > > > On Fri, Jul 17, 2009 at 12:14 AM, Arun G Nair > > wrote: > > > > > > > > > > > On Tue, Jul 14, 2009 at 10:54 PM, Anselm R Garbe > > > wrote: > > > > > >> Hi there, > > >> > > >> I'm glad to announce th

Re: [dev] dwm-5.6

2009-07-17 Thread Szabolcs Nagy
On 7/17/09, Szabolcs Nagy wrote: > it turns out the result of those inequalities depend on compiler > optimization flags (compiler might choose to use double division and > comparison instead of float one) so with -O0 there are no updates, > with -Os there are always updates unless the aspect is a

Re: [dev] dwm-5.6

2009-07-17 Thread Szabolcs Nagy
On 7/17/09, Szabolcs Nagy wrote: > On 7/16/09, Arun G Nair wrote: >> I have had a problem since 5.5. And its still there in 5.6. If I try to >> move >> the mplayer window its starts to resize and gets smaller and smaller. Am >> using Alt + Right mouse button to do this. I've commented out > > i'v

Re: [dev] dwm-5.6

2009-07-17 Thread Arun G Nair
On Fri, Jul 17, 2009 at 11:42 AM, Szabolcs Nagy wrote: > On 7/16/09, Arun G Nair wrote: > > I have had a problem since 5.5. And its still there in 5.6. If I try to > move > > the mplayer window its starts to resize and gets smaller and smaller. Am > > using Alt + Right mouse button to do this. I

Re: [dev] dwm-5.6

2009-07-16 Thread Szabolcs Nagy
On 7/16/09, Arun G Nair wrote: > I have had a problem since 5.5. And its still there in 5.6. If I try to move > the mplayer window its starts to resize and gets smaller and smaller. Am > using Alt + Right mouse button to do this. I've commented out i've noticed the same, but only with movies wher

Re: [dev] dwm-5.6

2009-07-16 Thread Arun G Nair
On Fri, Jul 17, 2009 at 12:44 AM, Anselm R Garbe wrote: > 2009/7/16 Arun G Nair : > > I have had a problem since 5.5. And its still there in 5.6. If I try to > move > > the mplayer window its starts to resize and gets smaller and smaller. Am > > using Alt + Right mouse button to do this. I've com

Re: [dev] dwm-5.6

2009-07-16 Thread Anselm R Garbe
2009/7/16 Arun G Nair : > Also have a problem of some apps not obeying rules. I have the the window > class names right. One app is password gorilla. Its a password manager. I > have it as > > { "gorilla",  NULL,   NULL,   1 << 5,   True } > > But it opens up in the current tag and

Re: [dev] dwm-5.6

2009-07-16 Thread Anselm R Garbe
2009/7/16 Arun G Nair : > I have had a problem since 5.5. And its still there in 5.6. If I try to move > the mplayer window its starts to resize and gets smaller and smaller. Am > using Alt + Right mouse button to do this. I've commented out Well, Alt+Right is for resizing and Alt+Left for moving.

Re: [dev] dwm-5.6

2009-07-16 Thread Tadzik Sośnierz
Dnia 2009-07-17, o godz. 00:21:51 Arun G Nair napisał(a): > On Fri, Jul 17, 2009 at 12:14 AM, Arun G Nair > wrote: > > > > > > > On Tue, Jul 14, 2009 at 10:54 PM, Anselm R Garbe > > wrote: > > > >> Hi there, > >> > >> I'm glad to announce the new dwm-5.6 release which can be fetched > >> from >

Re: [dev] dwm-5.6

2009-07-16 Thread Arun G Nair
On Fri, Jul 17, 2009 at 12:14 AM, Arun G Nair wrote: > > > On Tue, Jul 14, 2009 at 10:54 PM, Anselm R Garbe wrote: > >> Hi there, >> >> I'm glad to announce the new dwm-5.6 release which can be fetched from >> >> http://code.suckless.org/dl/dwm/dwm-5.6.tar.gz >> >> This release contains the new

Re: [dev] dwm-5.6

2009-07-16 Thread Arun G Nair
On Tue, Jul 14, 2009 at 10:54 PM, Anselm R Garbe wrote: > Hi there, > > I'm glad to announce the new dwm-5.6 release which can be fetched from > > http://code.suckless.org/dl/dwm/dwm-5.6.tar.gz > > This release contains the new Xinerama support that creates a view per > Xinerama screen. Focusing

Re: [dev] dwm-5.6 focusstack broken

2009-07-16 Thread Jacob Todd
On Thu, Jul 16, 2009 at 09:23:31AM +0100, Anselm R Garbe wrote: > 2009/7/15 Jacob Todd : > > Using the dwm-5.6 tarball from dwm.suckless.org, focusstack only works > > when in monocle or floating. When trying to focus a client in the stack, > > dwm jumps back to the master. I'm not using any patch'

Re: [dev] dwm-5.6 focusstack broken

2009-07-16 Thread Anselm R Garbe
2009/7/15 Jacob Todd : > Using the dwm-5.6 tarball from dwm.suckless.org, focusstack only works > when in monocle or floating. When trying to focus a client in the stack, > dwm jumps back to the master. I'm not using any patch's. I don't understand what you mean. focusstack() simply makes the focu

Re: [dev] dwm-5.6

2009-07-14 Thread Antony Jepson
On 2009-07-14, Anselm R Garbe wrote: > Have fun and enjoy the new dwm! Will do, thanks :). -- Sincerely, Antony Jepson / / GPG Key: 0xFA10ED80 pgpA3O9RhIuuF.pgp Description: PGP signature

Re: [dev] dwm-5.6

2009-07-14 Thread Anselm R Garbe
2009/7/14 Tadeusz Sośnierz : > Dnia 2009-07-14, o godz. 18:24:06 > Anselm R Garbe napisał(a): > >> Hi there, >> >> I'm glad to announce the new dwm-5.6 release which can be fetched from >> >>   http://code.suckless.org/dl/dwm/dwm-5.6.tar.gz >> >> This release contains the new Xinerama support that

Re: [dev] dwm-5.6

2009-07-14 Thread Tadeusz Sośnierz
Dnia 2009-07-14, o godz. 18:24:06 Anselm R Garbe napisał(a): > Hi there, > > I'm glad to announce the new dwm-5.6 release which can be fetched from > > http://code.suckless.org/dl/dwm/dwm-5.6.tar.gz > > This release contains the new Xinerama support that creates a view per > Xinerama screen.