aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-25 15:16:20 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-25 15:16:20 +0200
commit41ba7a79841c3d175f676e9a9ba6893dbc130856 (patch)
treef1cc7130e02fd6976056327d91a09f26c30fd154
parentaa471f2d65688f8cf4944c073ff05224bfac8a9c (diff)
downloaddwm-41ba7a79841c3d175f676e9a9ba6893dbc130856.tar.zst
s/TILED/TILE/g
-rw-r--r--config.arg.h2
-rw-r--r--config.default.h2
-rw-r--r--draw.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/config.arg.h b/config.arg.h
index 76f5fcc..2b989a7 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -16,7 +16,7 @@ const char *tags[] = { "work", "net", "fnord", NULL };
#define STATUSBGCOLOR "#dddddd"
#define STATUSFGCOLOR "#222222"
#define FLOATSYMBOL "><"
-#define TILEDSYMBOL "|="
+#define TILESYMBOL "|="
#define MODKEY Mod1Mask
#define MASTERW 60 /* percent */
diff --git a/config.default.h b/config.default.h
index ed09158..6e86ed8 100644
--- a/config.default.h
+++ b/config.default.h
@@ -16,7 +16,7 @@ const char *tags[] = { "1", "2", "3", "4", "5", NULL };
#define STATUSBGCOLOR "#dddddd"
#define STATUSFGCOLOR "#222222"
#define FLOATSYMBOL "~"
-#define TILEDSYMBOL "#"
+#define TILESYMBOL "#"
#define MODKEY Mod1Mask
#define MASTERW 60 /* percent */
diff --git a/draw.c b/draw.c
index d32e888..3ddc522 100644
--- a/draw.c
+++ b/draw.c
@@ -99,7 +99,7 @@ drawstatus()
dc.x = dc.y = 0;
dc.w = bw;
- drawtext(arrange == dotile ? TILEDSYMBOL : FLOATSYMBOL, dc.status, False);
+ drawtext(arrange == dotile ? TILESYMBOL : FLOATSYMBOL, dc.status, False);
dc.w = modew;
for(i = 0; i < ntags; i++) {
dc.x += dc.w;