aboutsummaryrefslogtreecommitdiff
path: root/config.default.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-09-15 10:30:45 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-09-15 10:30:45 +0200
commit73e2aba341624fbfb4791d464bf0d0a16c50578c (patch)
tree46f6c778c9cc677989e8f53464ecd6e6943cbb10 /config.default.h
parent9f88fd093cf4f18dfd25b86344e5df73f5f1c2a1 (diff)
removed config.arg.h, only 1 config.h necessary
Diffstat (limited to 'config.default.h')
-rw-r--r--config.default.h34
1 files changed, 22 insertions, 12 deletions
diff --git a/config.default.h b/config.default.h
index 96efa83..b016174 100644
--- a/config.default.h
+++ b/config.default.h
@@ -3,22 +3,29 @@
/* appearance */
#define BARPOS BarTop /* BarBot, BarOff */
#define BORDERPX 1
-#define FONT "-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
-#define NORMBORDERCOLOR "#dddddd"
-#define NORMBGCOLOR "#eeeeee"
-#define NORMFGCOLOR "#222222"
-#define SELBORDERCOLOR "#ff0000"
-#define SELBGCOLOR "#006699"
-#define SELFGCOLOR "#ffffff"
+#define FONT "-*-terminus-medium-r-*-*-12-*-*-*-*-*-iso10646-*"
+#define DARK /* LIGHT */
+#ifdef DARK
+#define NORMBORDERCOLOR "#222"
+#define NORMBGCOLOR "#000"
+#define NORMFGCOLOR "#eee"
+#define SELBORDERCOLOR "#09f"
+#else
+#define NORMBORDERCOLOR "#666"
+#define NORMBGCOLOR "#eee"
+#define NORMFGCOLOR "#222"
+#define SELBORDERCOLOR "#f00"
+#endif
+#define SELBGCOLOR "#369"
+#define SELFGCOLOR "#fff"
/* tagging */
#define TAGS \
const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
-/* Query class:instance:title for regex matching info with following command:
- * xprop | awk -F '"' '/^WM_CLASS/ { printf("%s:%s:",$4,$2) }; /^WM_NAME/ { printf("%s\n",$2) }' */
#define RULES \
static Rule rules[] = { \
/* class:instance:title regex tags regex isfloating */ \
+ { "Firefox", "3", False }, \
{ "Gimp", NULL, True }, \
{ "MPlayer", NULL, True }, \
{ "Acroread", NULL, True }, \
@@ -32,7 +39,7 @@ static Layout layouts[] = { \
{ "[]=", tile }, /* first entry is default */ \
{ "><>", floating }, \
};
-#define RESIZEHINTS False /* True - respect size hints in tiled resizals */
+#define RESIZEHINTS True /* False - respect size hints in tiled resizals */
#define MWFACT 0.6 /* master width factor [0.1 .. 0.9] */
#define SNAP 32 /* snap pixel */
@@ -41,8 +48,11 @@ static Layout layouts[] = { \
#define KEYS \
Key keys[] = { \
/* modifier key function argument */ \
- { MODKEY|ShiftMask, XK_Return, spawn, "exec xterm" }, \
- { MODKEY, XK_p, spawn, "exe=`dmenu_path | dmenu` && exec $exe" }, \
+ { MODKEY, XK_p, spawn, \
+ "exe=`dmenu_path | dmenu -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"'" \
+ " -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'` && exec $exe" }, \
+ { MODKEY|ShiftMask, XK_Return, spawn, \
+ "exec xterm -bg '"NORMBGCOLOR"' -fg '"NORMFGCOLOR"' -cr '"NORMFGCOLOR"' +sb -fn '"FONT"'" }, \
{ MODKEY, XK_space, setlayout, NULL }, \
{ MODKEY, XK_b, togglebar, NULL }, \
{ MODKEY, XK_j, focusnext, NULL }, \