Mercurial > dwm-meillo
comparison dwm.h @ 146:f328ce9c558c
centralized/externalized configuration to config.h
author | arg@10ksloc.org |
---|---|
date | Tue, 01 Aug 2006 13:59:13 +0200 |
parents | e61447a7f249 |
children | 5267e1204367 |
comparison
equal
deleted
inserted
replaced
145:774754477c35 | 146:f328ce9c558c |
---|---|
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> | 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com> |
3 * See LICENSE file for license details. | 3 * See LICENSE file for license details. |
4 */ | 4 */ |
5 | 5 |
6 #include <X11/Xlib.h> | 6 #include <X11/Xlib.h> |
7 | 7 #include CONFIG |
8 /* CUSTOMIZE */ | |
9 | |
10 #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" | |
11 #define BGCOLOR "#0a2c2d" | |
12 #define FGCOLOR "#ddeeee" | |
13 #define BORDERCOLOR "#176164" | |
14 #define MODKEY Mod1Mask /* Mod4Mask */ | |
15 /* | |
16 #define BGCOLOR "#666699" | |
17 #define FGCOLOR "#eeeeee" | |
18 #define BORDERCOLOR "#9999CC" | |
19 */ | |
20 #define MASTERW 52 /* percent */ | |
21 #define WM_PROTOCOL_DELWIN 1 | |
22 | |
23 /* tags */ | |
24 enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast }; | |
25 | |
26 /* END CUSTOMIZE */ | |
27 | 8 |
28 /* mask shorthands, used in event.c and client.c */ | 9 /* mask shorthands, used in event.c and client.c */ |
29 #define ButtonMask (ButtonPressMask | ButtonReleaseMask) | 10 #define ButtonMask (ButtonPressMask | ButtonReleaseMask) |
30 #define MouseMask (ButtonMask | PointerMotionMask) | 11 #define MouseMask (ButtonMask | PointerMotionMask) |
31 | 12 |