dwm.c
changeset 1025 107746bd83f0
parent 1024 17a935c3017f
child 1026 bc0929d03388
equal deleted inserted replaced
1024:17a935c3017f 1025:107746bd83f0
  1465 	/* grab keys */
  1465 	/* grab keys */
  1466 	keypress(NULL);
  1466 	keypress(NULL);
  1467 
  1467 
  1468 	/* init tags */
  1468 	/* init tags */
  1469 	compileregs();
  1469 	compileregs();
  1470 	for(ntags = 0; tags[ntags]; ntags++);
  1470 	ntags = sizeof tags / sizeof tags[0];
  1471 	seltags = emallocz(sizeof(Bool) * ntags);
  1471 	seltags = emallocz(sizeof(Bool) * ntags);
  1472 	seltags[0] = True;
  1472 	seltags[0] = True;
  1473 
  1473 
  1474 	/* init appearance */
  1474 	/* init appearance */
  1475 	dc.norm[ColBorder] = getcolor(NORMBORDERCOLOR);
  1475 	dc.norm[ColBorder] = getcolor(NORMBORDERCOLOR);