cleaned config.*h to prevent some confusion 7c2e3bb6
arg@10ksloc.org · 2006-08-01 15:29 3 file(s) · +5 −6
config.arg.h +1 −2
3 3
 * See LICENSE file for license details.
4 4
 */
5 5
6 -
#define ARRANGE 		dotile
6 +
#define ARRANGE 		dotile /* dofloat */
7 7
#define FONT			"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
8 8
#define BGCOLOR			"#0a2c2d"
9 9
#define FGCOLOR			"#ddeeee"
11 11
#define MODKEY			Mod1Mask
12 12
#define NUMLOCKMASK		Mod2Mask
13 13
#define MASTERW			52 /* percent */
14 -
#define WM_PROTOCOL_DELWIN	1
15 14
16 15
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
17 16
#define TAGS \
config.h +1 −2
3 3
 * See LICENSE file for license details.
4 4
 */
5 5
6 -
#define ARRANGE			dotile
6 +
#define ARRANGE 		dotile /* dofloat */
7 7
#define FONT			"fixed"
8 8
#define BGCOLOR			"#666699"
9 9
#define FGCOLOR			"#eeeeee"
11 11
#define MODKEY			Mod1Mask
12 12
#define NUMLOCKMASK		Mod2Mask
13 13
#define MASTERW			52 /* percent */
14 -
#define WM_PROTOCOL_DELWIN	1
15 14
16 15
enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
17 16
#define TAGS \
dwm.h +3 −2
7 7
#include CONFIG
8 8
9 9
/* mask shorthands, used in event.c and client.c */
10 -
#define BUTTONMASK	(ButtonPressMask | ButtonReleaseMask)
11 -
#define MOUSEMASK	(BUTTONMASK | PointerMotionMask)
10 +
#define BUTTONMASK		(ButtonPressMask | ButtonReleaseMask)
11 +
#define MOUSEMASK		(BUTTONMASK | PointerMotionMask)
12 +
#define WM_PROTOCOL_DELWIN	1
12 13
13 14
typedef union Arg Arg;
14 15
typedef struct Client Client;