config.def.h
author Anselm R Garbe <garbeam@gmail.com>
Sun, 11 May 2008 14:54:45 +0100
changeset 1189 58366c12324e
parent 1188 1765468a0546
child 1190 c8eaba1445a4
permissions -rw-r--r--
cleaned up config.def.h
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
910
c13cb8c6b7a5 referred to LICENSE file
Anselm R. Garbe <arg@suckless.org>
parents: 909
diff changeset
     1
/* See LICENSE file for copyright and license details. */
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
     2
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
     3
/* appearance */
769
dc60583894e0 introduced tile.c, some refactoring of functions
Anselm R. Garbe <arg@suckless.org>
parents: 758
diff changeset
     4
#define BORDERPX		1
1105
8427b03e56db disabled AIM_XINERAMA
anselm@anselm1
parents: 1104
diff changeset
     5
#define FONT			"-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"
1017
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     6
#define NORMBORDERCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     7
#define NORMBGCOLOR		"#cccccc"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     8
#define NORMFGCOLOR		"#000000"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
     9
#define SELBORDERCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    10
#define SELBGCOLOR		"#0066ff"
585e3422edc8 applied Peter Hartlich's border collapse patch
Anselm R. Garbe <garbeam@gmail.com>
parents: 1015
diff changeset
    11
#define SELFGCOLOR		"#ffffff"
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
    12
1117
fac7660be3de renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1
parents: 1116
diff changeset
    13
/* tagging */
1118
e8efb587e751 renamed MAXLEN into MAXTAGLEN (backward compliance)
anselm@anselm1
parents: 1117
diff changeset
    14
const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
1106
084b17f96d9b proceeded, though we still miss a real Tag struct
anselm@anselm1
parents: 1105
diff changeset
    15
1001
2477f818215c made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
arg@suckless.org
parents: 990
diff changeset
    16
Rule rules[] = {
1147
def76530f636 some changes towards 4.9
Anselm R Garbe <garbeam@gmail.com>
parents: 1135
diff changeset
    17
	/* class	instance	title		tags ref	isfloating */
1158
7c40610de8df geom indicator and layout indicator is only displayed if there are several geoms/layouts
Anselm R Garbe <garbeam@gmail.com>
parents: 1153
diff changeset
    18
	{ "Gimp",	NULL,		NULL,		NULL,		True },
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    19
};
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    20
1150
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    21
/* geometries, s{x,y,w,h} and bh are already initualized here */
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    22
/*   func name  bx  by  bw  wx  wy  ww     wh  mx  my       mw  mh     tx  ty     tw  th  mox moy mow moh */
1166
bf38679903b3 applied Peter Hartlich's simplification patch of setmfact and his revival of MFACT, appliead Janness Hofmann's simplification of grabbuttons() -- thanks guys!
anselm@anselm1
parents: 1160
diff changeset
    23
#define MFACT			0.55	/* master width factor [0.1 .. 0.9] */
1175
595ed1a4447c geometry fix proposed by Jukka
Anselm R Garbe <garbeam@gmail.com>
parents: 1168
diff changeset
    24
DEFGEOM(single,  0,  0, sw,  0, bh, sw, sh-bh, wx, wy, mfact*ww, wh, mx+mw, wy, ww-mw, wh,  wx, wy, ww, wh)
1150
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    25
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    26
Geom geoms[] = {
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    27
	/* symbol	function */
1159
34c88d74dff0 setlayout and setgeom are now togglable again
Anselm R Garbe <garbeam@gmail.com>
parents: 1158
diff changeset
    28
	{ "[]",		single },	/* first entry is default */
1150
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    29
};
40b2b183073b removed the string-based setgeom approach, introduced a new Geom type instead and a helper macro
Anselm R Garbe <garbeam@gmail.com>
parents: 1149
diff changeset
    30
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    31
/* layout(s) */
1050
fb5fa382c002 revival of RESIZEHINTS
Anselm R. Garbe <garbeam@gmail.com>
parents: 1048
diff changeset
    32
#define RESIZEHINTS		True	/* False - respect size hints in tiled resizals */
1008
ac233c362502 introduced ISTILE, which can be easily extended with other layout functions to allow reuse of setmwfact() and zoom()
Anselm R. Garbe <garbeam@gmail.com>
parents: 1001
diff changeset
    33
#define SNAP			32	/* snap pixel */
1117
fac7660be3de renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1
parents: 1116
diff changeset
    34
1001
2477f818215c made all stuff non-static - so you can choose wether to use dwm the static or the extern way when extending it
arg@suckless.org
parents: 990
diff changeset
    35
Layout layouts[] = {
1129
43d862bda73e implemented setlayout in the way proposed on the ml, split tile() into two functions, a third will follow soon
Anselm R Garbe <garbeam@gmail.com>
parents: 1126
diff changeset
    36
	/* symbol		function	isfloating */
1131
3556f7031193 changed config.def.h
Anselm R Garbe <garbeam@gmail.com>
parents: 1130
diff changeset
    37
	{ "[]=",		tilev,		False }, /* first entry is default */
1189
58366c12324e cleaned up config.def.h
Anselm R Garbe <garbeam@gmail.com>
parents: 1188
diff changeset
    38
	{ "><>",		NULL,		True },
58366c12324e cleaned up config.def.h
Anselm R Garbe <garbeam@gmail.com>
parents: 1188
diff changeset
    39
	{ "<M>",		monocle,	True },
787
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    40
};
9728e9e85f93 changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents: 785
diff changeset
    41
798
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    42
/* key definitions */
2c42d9e7f79c cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents: 788
diff changeset
    43
#define MODKEY			Mod1Mask
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    44
Key keys[] = {
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    45
	/* modifier			key		function	argument */
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    46
	{ MODKEY,			XK_p,		spawn,
1074
239bb2d7c7da added dmenu_run to config.h
anselm@anselm1
parents: 1071
diff changeset
    47
		"exec dmenu_run -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' -sb '"SELBGCOLOR"' -sf '"SELFGCOLOR"'" },
1159
34c88d74dff0 setlayout and setgeom are now togglable again
Anselm R Garbe <garbeam@gmail.com>
parents: 1158
diff changeset
    48
	{ MODKEY|ShiftMask,		XK_Return,	spawn,		"exec uxterm" },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    49
	{ MODKEY,			XK_j,		focusnext,	NULL },
1188
1765468a0546 implemented exact focus next, if arg != NULL to focus{next,prev}
Anselm R Garbe <garbeam@gmail.com>
parents: 1186
diff changeset
    50
	{ MODKEY|ShiftMask,		XK_j,		focusnext,	"exact" },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    51
	{ MODKEY,			XK_k,		focusprev,	NULL },
1188
1765468a0546 implemented exact focus next, if arg != NULL to focus{next,prev}
Anselm R Garbe <garbeam@gmail.com>
parents: 1186
diff changeset
    52
	{ MODKEY|ShiftMask,		XK_k,		focusprev,	"exact" },
1070
dc37f0e022f7 implemented reapply for re-applying the tagging rules during runtime, Mod-r
Anselm R. Garbe <garbeam@gmail.com>
parents: 1060
diff changeset
    53
	{ MODKEY,			XK_r,		reapply,	NULL },
1160
bf37ef388dd6 revival of mfact and setmfact
Anselm R Garbe <garbeam@gmail.com>
parents: 1159
diff changeset
    54
	{ MODKEY,			XK_h,		setmfact,	"-0.05" },
bf37ef388dd6 revival of mfact and setmfact
Anselm R Garbe <garbeam@gmail.com>
parents: 1159
diff changeset
    55
	{ MODKEY,			XK_l,		setmfact,	"+0.05" },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    56
	{ MODKEY,			XK_Return,	zoom,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    57
	{ MODKEY,			XK_Tab,		viewprevtag,	NULL },
1159
34c88d74dff0 setlayout and setgeom are now togglable again
Anselm R Garbe <garbeam@gmail.com>
parents: 1158
diff changeset
    58
	{ MODKEY|ShiftMask,		XK_c,		killclient,	NULL },
34c88d74dff0 setlayout and setgeom are now togglable again
Anselm R Garbe <garbeam@gmail.com>
parents: 1158
diff changeset
    59
	{ MODKEY,			XK_space,	setlayout,	NULL },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    60
	{ MODKEY|ShiftMask,		XK_space,	togglefloating,	NULL },
1159
34c88d74dff0 setlayout and setgeom are now togglable again
Anselm R Garbe <garbeam@gmail.com>
parents: 1158
diff changeset
    61
	{ MODKEY|ControlMask,		XK_space,	setgeom,	NULL },
1060
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    62
	{ MODKEY,			XK_0,		view,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    63
	{ MODKEY,			XK_1,		view,		tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    64
	{ MODKEY,			XK_2,		view,		tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    65
	{ MODKEY,			XK_3,		view,		tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    66
	{ MODKEY,			XK_4,		view,		tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    67
	{ MODKEY,			XK_5,		view,		tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    68
	{ MODKEY,			XK_6,		view,		tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    69
	{ MODKEY,			XK_7,		view,		tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    70
	{ MODKEY,			XK_8,		view,		tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    71
	{ MODKEY,			XK_9,		view,		tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    72
	{ MODKEY|ControlMask,		XK_1,		toggleview,	tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    73
	{ MODKEY|ControlMask,		XK_2,		toggleview,	tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    74
	{ MODKEY|ControlMask,		XK_3,		toggleview,	tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    75
	{ MODKEY|ControlMask,		XK_4,		toggleview,	tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    76
	{ MODKEY|ControlMask,		XK_5,		toggleview,	tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    77
	{ MODKEY|ControlMask,		XK_6,		toggleview,	tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    78
	{ MODKEY|ControlMask,		XK_7,		toggleview,	tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    79
	{ MODKEY|ControlMask,		XK_8,		toggleview,	tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    80
	{ MODKEY|ControlMask,		XK_9,		toggleview,	tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    81
	{ MODKEY|ShiftMask,		XK_0,		tag,		NULL },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    82
	{ MODKEY|ShiftMask,		XK_1,		tag,		tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    83
	{ MODKEY|ShiftMask,		XK_2,		tag,		tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    84
	{ MODKEY|ShiftMask,		XK_3,		tag,		tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    85
	{ MODKEY|ShiftMask,		XK_4,		tag,		tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    86
	{ MODKEY|ShiftMask,		XK_5,		tag,		tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    87
	{ MODKEY|ShiftMask,		XK_6,		tag,		tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    88
	{ MODKEY|ShiftMask,		XK_7,		tag,		tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    89
	{ MODKEY|ShiftMask,		XK_8,		tag,		tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    90
	{ MODKEY|ShiftMask,		XK_9,		tag,		tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    91
	{ MODKEY|ControlMask|ShiftMask,	XK_1,		toggletag,	tags[0] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    92
	{ MODKEY|ControlMask|ShiftMask,	XK_2,		toggletag,	tags[1] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    93
	{ MODKEY|ControlMask|ShiftMask,	XK_3,		toggletag,	tags[2] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    94
	{ MODKEY|ControlMask|ShiftMask,	XK_4,		toggletag,	tags[3] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    95
	{ MODKEY|ControlMask|ShiftMask,	XK_5,		toggletag,	tags[4] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    96
	{ MODKEY|ControlMask|ShiftMask,	XK_6,		toggletag,	tags[5] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    97
	{ MODKEY|ControlMask|ShiftMask,	XK_7,		toggletag,	tags[6] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    98
	{ MODKEY|ControlMask|ShiftMask,	XK_8,		toggletag,	tags[7] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
    99
	{ MODKEY|ControlMask|ShiftMask,	XK_9,		toggletag,	tags[8] },
9df583e2c03c Using a new tags definition (const char [][MAXTAGLEN] - thanks go to Szabolcs!
Anselm R. Garbe <garbeam@gmail.com>
parents: 1059
diff changeset
   100
	{ MODKEY|ShiftMask,		XK_q,		quit,		NULL },
146
f328ce9c558c centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff changeset
   101
};