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/
>
>
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/
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
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
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..
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.
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
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
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'
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.
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
>
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
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
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'
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
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
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
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.
32 matches
Mail list logo