cleaned the CUSTOMIZE flags 2b5553b1
arg@10ksloc.org · 2006-07-20 15:17 3 file(s) · +9 −5
dwm.h +2 −2
5 5
6 6
#include <X11/Xlib.h>
7 7
8 -
/********** CUSTOMIZE **********/
8 +
/* CUSTOMIZE */
9 9
10 10
#define FONT				"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
11 11
#define BGCOLOR				"#0a2c2d"
23 23
/* tags */
24 24
enum { Tscratch, Tdev, Twww, Twork, TLast };
25 25
26 -
/********** CUSTOMIZE **********/
26 +
/* END CUSTOMIZE */
27 27
28 28
typedef union Arg Arg;
29 29
typedef struct Client Client;
event.c +2 −0
59 59
	{ MODKEY|ShiftMask,	XK_Return,	spawn,		{ .argv = term } },
60 60
};
61 61
62 +
/* END CUSTOMIZE */
63 +
62 64
/* static */
63 65
64 66
static void
tag.c +5 −3
25 25
	{ "Gimp.*",		{ 0 },				True},
26 26
};
27 27
28 -
/* extern */
29 -
30 -
/* CUSTOMIZE */
31 28
char *tags[TLast] = {
32 29
	[Tscratch] = "scratch",
33 30
	[Tdev] = "dev",
34 31
	[Twww] = "www",
35 32
	[Twork] = "work",
36 33
};
34 +
37 35
void (*arrange)(Arg *) = dotile;
36 +
37 +
/* END CUSTOMIZE */
38 +
39 +
/* extern */
38 40
39 41
void
40 42
appendtag(Arg *arg)