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
This commit is contained in:
parent
a55f0e12fe
commit
95e8d12b71
9 changed files with 93 additions and 80 deletions
4
dwm.h
4
dwm.h
|
@ -3,8 +3,8 @@
|
|||
* See LICENSE file for license details.
|
||||
*/
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include CONFIG
|
||||
#include <X11/Xlib.h>
|
||||
|
||||
/* mask shorthands, used in event.c and client.c */
|
||||
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
|
||||
|
@ -57,8 +57,8 @@ struct Client {
|
|||
int tx, ty, tw, th; /* title */
|
||||
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
||||
int grav;
|
||||
unsigned int border;
|
||||
long flags;
|
||||
unsigned int border;
|
||||
Bool isfloat;
|
||||
Bool ismax;
|
||||
Client *next;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue