aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-03-15 14:17:42 +0000
committerAnselm R Garbe <garbeam@gmail.com>2008-03-15 14:17:42 +0000
commitdba22848c7d077c1a988a901c9390dc3c8cc9d64 (patch)
treeb3e91f7a977bbb9debd6120df8058f112cc883b2 /config.def.h
parent33b1960220f468ff2888e8ba3517e9a62ed99974 (diff)
made the string-based setgeom working
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 0866e2e..f6d90d8 100644
--- a/config.def.h
+++ b/config.def.h
@@ -9,7 +9,19 @@
#define SELBORDERCOLOR "#0066ff"
#define SELBGCOLOR "#0066ff"
#define SELFGCOLOR "#ffffff"
-#define GEOMETRY "0 0 W B 0 B W H-B 0 B W*0.55 H-B W*0.45 B H-B 0 B W H-B"
+#define GEOMETRY "0 0 W B " \
+ "0 B W H-B " \
+ "0 B W*0.55 H-B " \
+ "W*0.55 B W*0.45 H-B " \
+ "0 B W H-B"
+
+/* Anselm's dual head geometry in the office */
+#define DUALGEOMETRY "0 0 1280 B " \
+ "0 B W H-B " \
+ "0 B 1280 800-B " \
+ "1280 0 W-1280 H " \
+ "0 B 1280 800-B"
+
/* tagging */
const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
@@ -38,7 +50,7 @@ Layout layouts[] = {
#define MODKEY Mod1Mask
Key keys[] = {
/* modifier key function argument */
- { MODKEY, XK_a, setgeom, "0 0 W B 0 B W H-B 0 B 1280 800-B 1280 0 W-1280 H 0 B 1280 800-B" },
+ { MODKEY, XK_a, setgeom, DUALGEOMETRY },
{ MODKEY, XK_d, setgeom, GEOMETRY },
{ MODKEY, XK_p, spawn,
"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" },