removed 5LOC b38905b0
arg@10ksloc.org · 2006-08-01 16:20 2 file(s) · +10 −15
config.arg.h +6 −8
3 3
 * See LICENSE file for license details.
4 4
 */
5 5
6 -
#define ARRANGE 		dotile /* dofloat */
6 +
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
7 +
8 +
#define ARRANGE			dotile /* dofloat */
9 +
#define DEFTAG			Tdev
7 10
#define FONT			"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
8 11
#define BGCOLOR			"#0a2c2d"
9 12
#define FGCOLOR			"#ddeeee"
12 15
#define NUMLOCKMASK		Mod2Mask
13 16
#define MASTERW			52 /* percent */
14 17
15 -
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
16 18
#define TAGS \
17 19
char *tags[TLast] = { \
18 20
	[Tfnord] = "fnord", \
21 23
	[Twork] = "work", \
22 24
	[Tmisc] = "misc", \
23 25
};
24 -
#define DEFTAG Tdev
25 26
26 -
27 -
#define CMDS \
27 +
#define KEYS \
28 28
	const char *browse[] = { "firefox", NULL }; \
29 29
	const char *gimp[] = { "gimp", NULL }; \
30 30
	const char *term[] = { \
31 31
		"urxvt", "-tr", "+sb", "-bg", "black", "-fg", "white", "-cr", "white", \
32 32
		"-fn", "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*", NULL \
33 33
	}; \
34 -
	const char *xlock[] = { "xlock", NULL };
35 -
36 -
#define KEYS \
34 +
	const char *xlock[] = { "xlock", NULL }; \
37 35
static Key key[] = { \
38 36
	/* modifier		key		function	arguments */ \
39 37
	{ MODKEY,		XK_0,		view,		{ .i = Tfnord } }, \
config.h +4 −7
3 3
 * See LICENSE file for license details.
4 4
 */
5 5
6 -
#define ARRANGE 		dotile /* dofloat */
6 +
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
7 +
#define DEFTAG			Tdev
8 +
#define ARRANGE			dotile /* dofloat */
7 9
#define FONT			"fixed"
8 10
#define BGCOLOR			"#666699"
9 11
#define FGCOLOR			"#eeeeee"
12 14
#define NUMLOCKMASK		Mod2Mask
13 15
#define MASTERW			52 /* percent */
14 16
15 -
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
16 17
#define TAGS \
17 18
char *tags[TLast] = { \
18 19
	[Tfnord] = "fnord", \
21 22
	[Twork] = "work", \
22 23
	[Tmisc] = "misc", \
23 24
};
24 -
#define DEFTAG Tdev
25 -
26 -
27 -
#define CMDS \
28 -
	const char *term[] = { "xterm", NULL };
29 25
30 26
#define KEYS \
27 +
	const char *term[] = { "xterm", NULL }; \
31 28
static Key key[] = { \
32 29
	/* modifier		key		function	arguments */ \
33 30
	{ MODKEY,		XK_0,		view,		{ .i = Tfnord } }, \