aboutsummaryrefslogtreecommitdiffstats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-17 09:12:29 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-17 09:12:29 +0200
commitbf357945070a9f4722b8dcbf61d61b34d1aae0aa (patch)
tree042634c777b10f3689d9aa530db54dddaa14cf12 /tag.c
parente7438365417ba4bb0cff56b44b029c797be18fe5 (diff)
downloaddwm-bf357945070a9f4722b8dcbf61d61b34d1aae0aa.tar.zst
ordered variables in structs and source files alphabetically
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/tag.c b/tag.c
index 48f1f2a..5da5711 100644
--- a/tag.c
+++ b/tag.c
@@ -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