Introduction
Introduction Statistics Contact Development Disclaimer Help
tsimplifying regexps in config samples - dwm - [fork] customized build of dwm, …
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 2d7f59424c1b3974c3093cb800326437df7caa94
parent e256afe31ef6a70eceb632ddfe717bfe6d8d9169
Author: Anselm R. Garbe <[email protected]>
Date: Wed, 14 Feb 2007 09:31:23 +0100
simplifying regexps in config samples
Diffstat:
M config.arg.h | 8 ++++----
M config.default.h | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/config.arg.h b/config.arg.h
t@@ -87,8 +87,8 @@ static Key key[] = { \
#define RULES \
static Rule rule[] = { \
/* class:instance:title regex tags regex isfloat */ \
- { "Firefox.*", "3", False }, \
- { "Gimp.*", NULL, True }, \
- { "MPlayer.*", NULL, True }, \
- { "Acroread.*", NULL, True }, \
+ { "Firefox", "3", False }, \
+ { "Gimp", NULL, True }, \
+ { "MPlayer", NULL, True }, \
+ { "Acroread", NULL, True }, \
};
diff --git a/config.default.h b/config.default.h
t@@ -84,7 +84,7 @@ static Key key[] = { \
#define RULES \
static Rule rule[] = { \
/* class:instance:title regex tags regex isfloat */ \
- { "Gimp.*", NULL, True }, \
- { "MPlayer.*", NULL, True }, \
- { "Acroread.*", NULL, True }, \
+ { "Gimp", NULL, True }, \
+ { "MPlayer", NULL, True }, \
+ { "Acroread", NULL, True }, \
};
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.