dwm-meillo

diff dwm.h @ 164:21071ae1fe68

made fullscreen apps working fine in floating mode (there is no sane way to make them work in tiled mode, thus I switch to floating mode if I run such kind of app), also fixed the xterm issue reported by Sander
author arg@10ksloc.org
date Wed, 02 Aug 2006 16:32:05 +0200
parents 93012e947eae
children e0535db04dfe
line diff
     1.1 --- a/dwm.h	Wed Aug 02 13:05:04 2006 +0200
     1.2 +++ b/dwm.h	Wed Aug 02 16:32:05 2006 +0200
     1.3 @@ -3,8 +3,8 @@
     1.4   * See LICENSE file for license details.
     1.5   */
     1.6  
     1.7 +#include CONFIG
     1.8  #include <X11/Xlib.h>
     1.9 -#include CONFIG
    1.10  
    1.11  /* mask shorthands, used in event.c and client.c */
    1.12  #define BUTTONMASK		(ButtonPressMask | ButtonReleaseMask)
    1.13 @@ -57,8 +57,8 @@
    1.14  	int tx, ty, tw, th; /* title */
    1.15  	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
    1.16  	int grav;
    1.17 +	long flags; 
    1.18  	unsigned int border;
    1.19 -	long flags; 
    1.20  	Bool isfloat;
    1.21  	Bool ismax;
    1.22  	Client *next;