aboutsummarylogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorAnselm R Garbe2009-07-08 18:59:20 +0100
committerAnselm R Garbe2009-07-08 18:59:20 +0100
commit8e5e4c37b2e598a0089994b8ec80e5a46aa8ad43 (patch)
tree55a8cfb21babacc241817aeaf1b5c69de75112a9 /config.def.h
parenta7dbf6f12d53ec87837d87dfda5de334b0fc21c8 (diff)
downloadaur-8e5e4c37b2e598a0089994b8ec80e5a46aa8ad43.tar.gz
introducing const where it might make some sense
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/config.def.h b/config.def.h
index a729dcda2520..dfbbdd17747d 100644
--- a/config.def.h
+++ b/config.def.h
@@ -1,8 +1,6 @@
/* See LICENSE file for copyright and license details. */
/* appearance */
-#define SHOWBAR True /* False means no bar */
-#define TOPBAR True /* False means bottom bar */
static const char font[] = "-*-*-medium-*-*-*-14-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#cccccc";
static const char normbgcolor[] = "#cccccc";
@@ -10,8 +8,10 @@ static const char normfgcolor[] = "#000000";
static const char selbordercolor[] = "#0066ff";
static const char selbgcolor[] = "#0066ff";
static const char selfgcolor[] = "#ffffff";
-static unsigned int borderpx = 1; /* border pixel of windows */
-static unsigned int snap = 32; /* snap pixel */
+static const unsigned int borderpx = 1; /* border pixel of windows */
+static const unsigned int snap = 32; /* snap pixel */
+static const Bool showbar = True; /* False means no bar */
+static const Bool topbar = True; /* False means bottom bar */
/* monitor(s) symbols */
static const char *monsyms[] = { "<1>", "<2>", "<3>", "<4>", "<5>" };
@@ -19,18 +19,17 @@ static const char *monsyms[] = { "<1>", "<2>", "<3>", "<4>", "<5>" };
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
-static Rule rules[] = {
+static const Rule rules[] = {
/* class instance title tags mask isfloating */
{ "Gimp", NULL, NULL, 0, True },
{ "Firefox", NULL, NULL, 1 << 8, False },
-
};
/* layout(s) */
-static float mfact = 0.55; /* factor of master area size [0.05..0.95] */
-static Bool resizehints = True; /* False means respect size hints in tiled resizals */
+static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
+static const Bool resizehints = True; /* False means respect size hints in tiled resizals */
-static Layout layouts[] = {
+static const Layout layouts[] = {
/* symbol arrange function */
{ "[]=", tile }, /* first entry is default */
{ "><>", NULL }, /* no layout function means floating behavior */