made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it

This commit is contained in:
arg@suckless.org
2007-09-17 16:42:37 +02:00
parent 01022b95d6
commit fe2775a15b
4 changed files with 184 additions and 187 deletions

View File

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