about summary refs log tree commit diff stats
path: root/config.h
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-01 16:20:03 +0200
committerarg@10ksloc.org <unknown>2006-08-01 16:20:03 +0200
commitb38905b0048ded1cdd20b0edec64d56450c47551 (patch)
treee409ec623aa357f062282e592af75a6632298cf7 /config.h
parentd9a6a3b5d2e0152d5746723fcd482994602f292e (diff)
downloaddwm-b38905b0048ded1cdd20b0edec64d56450c47551.tar.gz
removed 5LOC
Diffstat (limited to 'config.h')
-rw-r--r--config.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/config.h b/config.h
index bc60bd0..36213c0 100644
--- a/config.h
+++ b/config.h
@@ -3,7 +3,9 @@
  * See LICENSE file for license details.
  */
 
-#define ARRANGE 		dotile /* dofloat */
+enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
+#define DEFTAG			Tdev
+#define ARRANGE			dotile /* dofloat */
 #define FONT			"fixed"
 #define BGCOLOR			"#666699"
 #define FGCOLOR			"#eeeeee"
@@ -12,7 +14,6 @@
 #define NUMLOCKMASK		Mod2Mask
 #define MASTERW			52 /* percent */
 
-enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
 #define TAGS \
 char *tags[TLast] = { \
 	[Tfnord] = "fnord", \
@@ -21,13 +22,9 @@ char *tags[TLast] = { \
 	[Twork] = "work", \
 	[Tmisc] = "misc", \
 };
-#define DEFTAG Tdev
-
-
-#define CMDS \
-	const char *term[] = { "xterm", NULL };
 
 #define KEYS \
+	const char *term[] = { "xterm", NULL }; \
 static Key key[] = { \
 	/* modifier		key		function	arguments */ \
 	{ MODKEY,		XK_0,		view,		{ .i = Tfnord } }, \
/a>
5c26afb1 ^
417a05ee ^
5f3b3e7a ^
417a05ee ^
f15fcfe8 ^
417a05ee ^

a78deb23 ^
417a05ee ^
62a3c1b4 ^
bb3ce6cd ^

f15fcfe8 ^

bb3ce6cd ^





4c3a867b ^

15655a12 ^

4c3a867b ^





417a05ee ^
bb3ce6cd ^


f13576b5 ^
bb3ce6cd ^









924ed08a ^
417a05ee ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132