# HG changeset patch # User Anselm R Garbe # Date 1219047021 -3600 # Node ID c1d2b106440d6f9456ab7da3281217f715e7d237 # Parent 3d39dc3001ccd0e1d863e385ebf341864c5c5829 added some comments regarding FAQ about s{x,y,w,h}, w{x,y,w,h}, b{y,h,lw} diff -r 3d39dc3001cc -r c1d2b106440d dwm.c --- a/dwm.c Mon Aug 18 08:57:34 2008 +0100 +++ b/dwm.c Mon Aug 18 09:10:21 2008 +0100 @@ -202,8 +202,10 @@ /* variables */ static char stext[256]; -static int screen, sx, sy, sw, sh; -static int by, bh, blw, wx, wy, ww, wh; +static int screen; +static int sx, sy, sw, sh; /* display geometry x, y, width, height */ +static int by, bh, blw; /* bar geometry y, height and layout symbol width */ +static int wx, wy, ww, wh; /* window area geometry x, y, width, height, bar excluded */ static unsigned int seltags = 0, sellt = 0; static int (*xerrorxlib)(Display *, XErrorEvent *); static unsigned int numlockmask = 0;