comparison dwm.h @ 125:b4b8b4236599

cleaned the CUSTOMIZE flags
author arg@10ksloc.org
date Thu, 20 Jul 2006 15:17:52 +0200
parents 75576e44c1d8
children 1480e19f6377
comparison
equal deleted inserted replaced
124:75576e44c1d8 125:b4b8b4236599
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
8 /********** CUSTOMIZE **********/ 8 /* CUSTOMIZE */
9 9
10 #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" 10 #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
11 #define BGCOLOR "#0a2c2d" 11 #define BGCOLOR "#0a2c2d"
12 #define FGCOLOR "#ddeeee" 12 #define FGCOLOR "#ddeeee"
13 #define BORDERCOLOR "#176164" 13 #define BORDERCOLOR "#176164"
21 #define WM_PROTOCOL_DELWIN 1 21 #define WM_PROTOCOL_DELWIN 1
22 22
23 /* tags */ 23 /* tags */
24 enum { Tscratch, Tdev, Twww, Twork, TLast }; 24 enum { Tscratch, Tdev, Twww, Twork, TLast };
25 25
26 /********** CUSTOMIZE **********/ 26 /* END CUSTOMIZE */
27 27
28 typedef union Arg Arg; 28 typedef union Arg Arg;
29 typedef struct Client Client; 29 typedef struct Client Client;
30 typedef enum Corner Corner; 30 typedef enum Corner Corner;
31 typedef struct DC DC; 31 typedef struct DC DC;