On 13 November 2011 18:22, Stephen Paul Weber <singpol...@singpolyma.net> wrote: > I used to be able to start dwm on a different tag selection than the default > (which is only select tag 1). Is there still a way to do this?
This is what I use, I'm not at my box right now, so it's a rough guess, but I'm pretty sure it'll work. Obviously TAG_INIT wants to be your starting tag mask. Rob
diff -r ee36ffbd4252 dwm.c --- a/dwm.c Sun Nov 06 20:36:23 2011 +0100 +++ b/dwm.c Sun Nov 13 18:34:07 2011 +0000 @@ -647,7 +647,7 @@ if(!(m = (Monitor *)calloc(1, sizeof(Monitor)))) die("fatal: could not malloc() %u bytes\n", sizeof(Monitor)); - m->tagset[0] = m->tagset[1] = 1; + m->tagset[0] = m->tagset[1] = TAG_INIT; m->mfact = mfact; m->nmaster = nmaster; m->showbar = showbar;