added some comments regarding FAQ about s{x,y,w,h}, w{x,y,w,h}, b{y,h,lw} d8d733c3
Anselm R Garbe · 2008-08-18 09:10 1 file(s) · +4 −2
dwm.c +4 −2
202 202
203 203
/* variables */
204 204
static char stext[256];
205 -
static int screen, sx, sy, sw, sh;
206 -
static int by, bh, blw, wx, wy, ww, wh;
205 +
static int screen;
206 +
static int sx, sy, sw, sh; /* display geometry x, y, width, height */ 
207 +
static int by, bh, blw;    /* bar geometry y, height and layout symbol width */
208 +
static int wx, wy, ww, wh; /* window area geometry x, y, width, height, bar excluded */
207 209
static unsigned int seltags = 0, sellt = 0;
208 210
static int (*xerrorxlib)(Display *, XErrorEvent *);
209 211
static unsigned int numlockmask = 0;