diff options
author | arg@suckless.org <unknown> | 2007-09-17 16:42:37 +0200 |
---|---|---|
committer | arg@suckless.org <unknown> | 2007-09-17 16:42:37 +0200 |
commit | fe2775a15ba2d4900788c57194da2bad3d19cfaf (patch) | |
tree | a668f514f4169a26568a8c5d209f3fb510e2b177 /config.h | |
parent | 01022b95d65612462972bdd009896ba6fdd3063a (diff) | |
download | dwm-fe2775a15ba2d4900788c57194da2bad3d19cfaf.tar.gz |
made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h index 9dec069..10e228b 100644 --- a/config.h +++ b/config.h @@ -12,8 +12,8 @@ #define SELFGCOLOR "#fff" /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; -static Rule rules[] = { +const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; +Rule rules[] = { /* class:instance:title regex tags regex isfloating */ { "Firefox", "3", False }, { "Gimp", NULL, True }, @@ -22,7 +22,7 @@ static Rule rules[] = { }; /* layout(s) */ -static Layout layouts[] = { +Layout layouts[] = { /* symbol function */ { "[]=", tile }, /* first entry is default */ { "><>", floating }, |