Browse Source

simplifying regexps in config samples

master
Anselm R. Garbe 18 years ago
parent
commit
2d7f59424c
2 changed files with 7 additions and 7 deletions
  1. +4
    -4
      config.arg.h
  2. +3
    -3
      config.default.h

+ 4
- 4
config.arg.h View File

@ -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 }, \
};

+ 3
- 3
config.default.h View File

@ -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 }, \
};

Loading…
Cancel
Save