implement multi-tag selection through button3 click on the specific tag

This commit is contained in:
Anselm R.Garbe
2006-08-11 18:37:41 +02:00
parent 50729a2e73
commit d7413ffd2d
6 changed files with 48 additions and 17 deletions

4
main.c
View File

@ -83,7 +83,7 @@ xerrorstart(Display *dsply, XErrorEvent *ee)
/* extern */
char stext[1024];
int tsel = DEFTAG;
Bool *tsel;
int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
unsigned int ntags;
Atom wmatom[WMLast], netatom[NetLast];
@ -213,6 +213,8 @@ main(int argc, char *argv[])
initrregs();
for(ntags = 0; tags[ntags]; ntags++);
tsel = emallocz(sizeof(Bool) * ntags);
tsel[DEFTAG] = True;
/* style */
dc.bg = getcolor(BGCOLOR);