config.default.h
changeset 878 d2ae55f83f9f
parent 858 b797071ebbd4
child 905 ca352bd2f8f7
equal deleted inserted replaced
877:29c4a4d1214c 878:d2ae55f83f9f
     1 /* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
     1 /* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
     2  * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
     2  * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
     3  * See LICENSE file for license details. */
     3  * See LICENSE file for license details. */
     4 
     4 
     5 /* appearance */
     5 /* appearance */
       
     6 #define BARPOS			BarTop /* BarBot, BarOff */
     6 #define BORDERPX		1
     7 #define BORDERPX		1
     7 #define FONT			"-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
     8 #define FONT			"-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*"
     8 #define NORMBORDERCOLOR		"#dddddd"
     9 #define NORMBORDERCOLOR		"#dddddd"
     9 #define NORMBGCOLOR		"#eeeeee"
    10 #define NORMBGCOLOR		"#eeeeee"
    10 #define NORMFGCOLOR		"#222222"
    11 #define NORMFGCOLOR		"#222222"
    11 #define SELBORDERCOLOR		"#ff0000"
    12 #define SELBORDERCOLOR		"#ff0000"
    12 #define SELBGCOLOR		"#006699"
    13 #define SELBGCOLOR		"#006699"
    13 #define SELFGCOLOR		"#ffffff"
    14 #define SELFGCOLOR		"#ffffff"
    14 #define TOPBAR			True		/* False */
       
    15 
    15 
    16 /* tagging */
    16 /* tagging */
    17 #define TAGS \
    17 #define TAGS \
    18 const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
    18 const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
    19 /* Query class:instance:title for regex matching info with following command:
    19 /* Query class:instance:title for regex matching info with following command:
    43 static Key key[] = { \
    43 static Key key[] = { \
    44 	/* modifier			key		function	argument */ \
    44 	/* modifier			key		function	argument */ \
    45 	{ MODKEY|ShiftMask,		XK_Return,	spawn,		"exec xterm" }, \
    45 	{ MODKEY|ShiftMask,		XK_Return,	spawn,		"exec xterm" }, \
    46 	{ MODKEY,			XK_p,		spawn, 		"exe=`dmenu_path | dmenu` && exec $exe" }, \
    46 	{ MODKEY,			XK_p,		spawn, 		"exe=`dmenu_path | dmenu` && exec $exe" }, \
    47 	{ MODKEY,			XK_space,	setlayout,	NULL }, \
    47 	{ MODKEY,			XK_space,	setlayout,	NULL }, \
       
    48 	{ MODKEY,			XK_b,		togglebar,	NULL }, \
    48 	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
    49 	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
    49 	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
    50 	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
    50 	{ MODKEY|ShiftMask,		XK_j,		incnmaster,	"1" }, \
    51 	{ MODKEY|ShiftMask,		XK_j,		incnmaster,	"1" }, \
    51 	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
    52 	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
    52 	{ MODKEY,			XK_j,		focusclient,	"1" }, \
    53 	{ MODKEY,			XK_j,		focusclient,	"1" }, \