Re: [dwm] Monocle question

2008-04-04 Thread Szabolcs Nagy
On 4/4/08, Dashing [EMAIL PROTECTED] wrote: Hi I use monocle mode a lot, but I don't like how dialog boxes get maximized. I noticed two versions for going through the clients exist: * for(c = clients; c; c = c-next) * for(c = nexttiled(clients); c; c = nexttiled(c-next)) Why does monocle

[dwm] use of class and instance (was: Re: dwm-4.9 / dmenu-3.6)

2008-04-04 Thread Matthias Kirschner
Hello Anselm, * Anselm R. Garbe [EMAIL PROTECTED] [2008-04-03 23:10:08 +0200]: dmenu-3.6 is a bugfix release and dwm-4.9 contains some new improvements: - fine grain DEFGEOM geometry definition in config.h - revival of setmfact and MFACT in config.h (same applies to Mod1-h and Mod1-l)

Re: [dwm] Monocle question

2008-04-04 Thread yy
2008/4/4, Szabolcs Nagy [EMAIL PROTECTED]: On 4/4/08, Dashing [EMAIL PROTECTED] wrote: Hi I use monocle mode a lot, but I don't like how dialog boxes get maximized. I noticed two versions for going through the clients exist: * for(c = clients; c; c = c-next) * for(c =

Re: [dwm] use of class and instance (was: Re: dwm-4.9 / dmenu-3.6)

2008-04-04 Thread Anselm R. Garbe
On Fri, Apr 04, 2008 at 08:31:11AM +0200, Matthias Kirschner wrote: I saw that also Rule rules changed. And the gimp example is also different between 4.9 and hg. In dwm 4.9: { Gimp, NULL, NULL, NULL, True }, And in dwm hg: { NULL, NULL, Gimp, NULL, True }, Well, the latter

Re: [dwm] Monocle question

2008-04-04 Thread Marco Squarcina
On Fri, Apr 04, 2008 at 10:04:48AM +0200, yy wrote: e.g.: when I'm using gimp (which I do very often) sometimes I want my draw window to be maximized having the toolbars on top of it, but if monocle maximizes the toolbars windows it makes gimp unusable. For me, a floating window means: I don't

Re: [dwm] Monocle question

2008-04-04 Thread Matthias-Christian Ott
On Fri, Apr 04, 2008 at 01:05:51AM +0200, Dashing wrote: Hi I use monocle mode a lot, but I don't like how dialog boxes get maximized. I noticed two versions for going through the clients exist: * for(c = clients; c; c = c-next) * for(c = nexttiled(clients); c; c =

Re: [dwm] Monocle question

2008-04-04 Thread Szabolcs Nagy
On 4/4/08, Antoni Grzymala [EMAIL PROTECTED] wrote: Anselm R. Garbe dixit (2008-04-04, 11:35): Well what about having monocle work like this: just only raise and display the focused client in the monocle area, and restore the previous dimensions everytime a new client is focused? But

Re: [dwm] Monocle question

2008-04-04 Thread Anselm R. Garbe
On Fri, Apr 04, 2008 at 12:29:43PM +0200, Matthias-Christian Ott wrote: Anselm R. Garbe [EMAIL PROTECTED] wrote: On Fri, Apr 04, 2008 at 01:05:51AM +0200, Dashing wrote: Hi I use monocle mode a lot, but I don't like how dialog boxes get maximized. I noticed two versions

Re: [dwm] Monocle question

2008-04-04 Thread Matthias-Christian Ott
Anselm R. Garbe [EMAIL PROTECTED] wrote: On Fri, Apr 04, 2008 at 01:05:51AM +0200, Dashing wrote: Hi I use monocle mode a lot, but I don't like how dialog boxes get maximized. I noticed two versions for going through the clients exist: * for(c = clients; c; c = c-next) * for(c

Re: [dwm] dwm-4.9 / dmenu-3.6

2008-04-04 Thread Arun G Nair
On Fri, Apr 4, 2008 at 2:40 AM, Anselm R. Garbe [EMAIL PROTECTED] wrote: Hi there, I'm glad to announce dwm-4.9 and dmenu-3.9! http://www.suckless.org/download/dwm-4.9.tar.gz http://www.suckless.org/download/dmenu-3.6.tar.gz dmenu-3.6 is a bugfix release and dwm-4.9 contains some new

Re: [dwm] dwm-4.9 / dmenu-3.6

2008-04-04 Thread Arun G Nair
On Fri, Apr 4, 2008 at 8:23 PM, Arun G Nair [EMAIL PROTECTED] wrote: On Fri, Apr 4, 2008 at 2:40 AM, Anselm R. Garbe [EMAIL PROTECTED] wrote: Hi there, I'm glad to announce dwm-4.9 and dmenu-3.9! http://www.suckless.org/download/dwm-4.9.tar.gz

Re: [dwm] dwm-4.9 / dmenu-3.6

2008-04-04 Thread Ross Mohn
On Fri, Apr 04, 2008 at 08:29:36PM +0530, Arun G Nair wrote: On Fri, Apr 4, 2008 at 8:23 PM, Arun G Nair [EMAIL PROTECTED] wrote: On Fri, Apr 4, 2008 at 2:40 AM, Anselm R. Garbe [EMAIL PROTECTED] wrote: Hi there, I'm glad to announce dwm-4.9 and dmenu-3.9!

Re: [dwm] Monocle question

2008-04-04 Thread yy
After looking at the 4.9 release I have a suggestion which could satisfy most of the people, in dwm.c:1071 you could change the isvisible(c) condition to (lt-isfloating || !c-isfloating) isvisible(c), this way if you want to just maximize tiled windows you just have to set the float value of

Re: [dwm] Monocle question

2008-04-04 Thread Matthias-Christian Ott
yy [EMAIL PROTECTED] wrote: After looking at the 4.9 release I have a suggestion which could satisfy most of the people, in dwm.c:1071 you could change the isvisible(c) condition to (lt-isfloating || !c-isfloating) isvisible(c), this way if you want to just maximize tiled windows you just

Re: [dwm] Monocle question

2008-04-04 Thread Matthias-Christian Ott
Szabolcs Nagy [EMAIL PROTECTED] wrote: On 4/4/08, Matthias-Christian Ott [EMAIL PROTECTED] wrote: In other words you would propose the attached patch. nice, i like it (except an unnecessary space) I noticed that two after sending the patch ;). Copy Paste in VIM sucks sometimes. Regards