about summary refs log tree commit diff stats
path: root/config.arg.h
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-04 14:40:32 +0200
committerarg@10ksloc.org <unknown>2006-08-04 14:40:32 +0200
commite21d93b7bd5d34f31bc09a576b7d449df5b68c07 (patch)
treefb5a123126b80d8cb9480aaec8c320fecfc2fec4 /config.arg.h
parentf504aea13289c7fd25d499d2582558d4e311bfbf (diff)
downloaddwm-e21d93b7bd5d34f31bc09a576b7d449df5b68c07.tar.gz
switched to regexp matching for Rules
Diffstat (limited to 'config.arg.h')
-rw-r--r--config.arg.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/config.arg.h b/config.arg.h
index 4297376..d391f9e 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -52,11 +52,10 @@ static Key key[] = { \
 };
 
 #define RULES \
-	const unsigned int two[] = { 2 }; \
 static Rule rule[] = { \
-	/* class:instance	tags		isfloat */ \
-	{ "Firefox.*",		two,		False }, \
-	{ "Gimp.*",		NULL,		True}, \
-	{ "MPlayer.*",		NULL,		True}, \
-	{ "Acroread.*",		NULL,		True}, \
+	/* class:instance regex		tags regex	isfloat */ \
+	{ "Firefox.*",			"net",		False }, \
+	{ "Gimp.*",			NULL,		True}, \
+	{ "MPlayer.*",			NULL,		True}, \
+	{ "Acroread.*",			NULL,		True}, \
 };
e='author Anselm R. Garbe <garbeam@gmail.com> 2007-11-10 19:16:11 +0100 committer Anselm R. Garbe <garbeam@gmail.com> 2007-11-10 19:16:11 +0100 Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!' href='/acidbong/suckless/dwm/commit/config.def.h?id=e9a07335060337222c94260797582aae2c74d455'>e9a0733 ^
a3d8c05 ^
fe2775a ^
a3d8c05 ^




f196b71 ^
3794c62 ^
f196b71 ^
8d1810c ^
6f60b2e ^
8d1810c ^
fe2775a ^
0235a84 ^


3794c62 ^

f196b71 ^

e9a0733 ^


308f95a ^
e9a0733 ^






d66ad14 ^
e9a0733 ^










































b515765 ^
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