aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-11-07 14:04:49 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-11-08 20:35:25 +0100
commit43e82adf0dc37411fdcc6406b3cdf5d572387b9f (patch)
tree339e67345546ef560877003da618d4165d994b34 /config.def.h
parent42cf1c7d8f94e1c51a71761ab24414c2f49dac26 (diff)
separate program-specific c99 bool and X11
True, False are X11-specific (int), make sure to use c99 stdbool for program-specific things.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.def.h b/config.def.h
index 3fde3cf..76073a5 100644
--- a/config.def.h
+++ b/config.def.h
@@ -13,8 +13,8 @@ static const char selbgcolor[] = "#005577";
static const char selfgcolor[] = "#eeeeee";
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 */
+static const bool showbar = true; /* false means no bar */
+static const bool topbar = true; /* false means bottom bar */
/* tagging */
static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@@ -25,14 +25,14 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
- { "Gimp", NULL, NULL, 0, True, -1 },
- { "Firefox", NULL, NULL, 1 << 8, False, -1 },
+ { "Gimp", NULL, NULL, 0, true, -1 },
+ { "Firefox", NULL, NULL, 1 << 8, false, -1 },
};
/* layout(s) */
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
static const int nmaster = 1; /* number of clients in master area */
-static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
+static const bool resizehints = true; /* true means respect size hints in tiled resizals */
static const Layout layouts[] = {
/* symbol arrange function */