implement multi-tag selection through button3 click on the specific tag
This commit is contained in:
parent
50729a2e73
commit
d7413ffd2d
6 changed files with 48 additions and 17 deletions
4
main.c
4
main.c
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue