diff options
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 21 |
1 files changed, 10 insertions, 11 deletions
@@ -7,24 +7,23 @@ #include <string.h> #include <X11/Xutil.h> -/********** CUSTOMIZE **********/ - -char *tags[TLast] = { - [Tscratch] = "scratch", - [Tdev] = "dev", - [Twww] = "www", - [Twork] = "work", -}; +/* static */ +/* CUSTOMIZE */ static Rule rule[] = { /* class instance tags isfloat */ { "Firefox-bin", "Gecko", { [Twww] = "www" }, False }, }; -/********** CUSTOMIZE **********/ - -/* extern functions */ +/* extern */ +/* CUSTOMIZE */ +char *tags[TLast] = { + [Tscratch] = "scratch", + [Tdev] = "dev", + [Twww] = "www", + [Twork] = "work", +}; void (*arrange)(Arg *) = dotile; void |