comparison main.c @ 262:d659a2dce2b5

implemented viewextend and added M-S-C-n shortcuts for extending the current view... updated man page (works great!) nice feature
author Anselm R.Garbe <arg@10ksloc.org>
date Fri, 11 Aug 2006 19:26:12 +0200
parents d6fd632d861c
children 573b1c4a71a4
comparison
equal deleted inserted replaced
261:d6fd632d861c 262:d659a2dce2b5
81 } 81 }
82 82
83 /* extern */ 83 /* extern */
84 84
85 char stext[1024]; 85 char stext[1024];
86 Bool *tsel; 86 Bool *seltag;
87 int screen, sx, sy, sw, sh, bx, by, bw, bh, mw; 87 int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
88 unsigned int ntags; 88 unsigned int ntags;
89 Atom wmatom[WMLast], netatom[NetLast]; 89 Atom wmatom[WMLast], netatom[NetLast];
90 Bool running = True; 90 Bool running = True;
91 Bool issel = True; 91 Bool issel = True;
211 211
212 grabkeys(); 212 grabkeys();
213 initrregs(); 213 initrregs();
214 214
215 for(ntags = 0; tags[ntags]; ntags++); 215 for(ntags = 0; tags[ntags]; ntags++);
216 tsel = emallocz(sizeof(Bool) * ntags); 216 seltag = emallocz(sizeof(Bool) * ntags);
217 tsel[DEFTAG] = True; 217 seltag[DEFTAG] = True;
218 218
219 /* style */ 219 /* style */
220 dc.bg = getcolor(BGCOLOR); 220 dc.bg = getcolor(BGCOLOR);
221 dc.fg = getcolor(FGCOLOR); 221 dc.fg = getcolor(FGCOLOR);
222 dc.border = getcolor(BORDERCOLOR); 222 dc.border = getcolor(BORDERCOLOR);