dwm-meillo

diff 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
line diff
     1.1 --- a/dwm.h	Tue Aug 01 12:41:38 2006 +0200
     1.2 +++ b/dwm.h	Tue Aug 01 13:59:13 2006 +0200
     1.3 @@ -4,26 +4,7 @@
     1.4   */
     1.5  
     1.6  #include <X11/Xlib.h>
     1.7 -
     1.8 -/* CUSTOMIZE */
     1.9 -
    1.10 -#define FONT			"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
    1.11 -#define BGCOLOR			"#0a2c2d"
    1.12 -#define FGCOLOR			"#ddeeee"
    1.13 -#define BORDERCOLOR		"#176164"
    1.14 -#define MODKEY			Mod1Mask /* Mod4Mask */
    1.15 -/*
    1.16 -#define BGCOLOR			"#666699"
    1.17 -#define FGCOLOR			"#eeeeee"
    1.18 -#define BORDERCOLOR		"#9999CC"
    1.19 -*/
    1.20 -#define MASTERW			52 /* percent */
    1.21 -#define WM_PROTOCOL_DELWIN	1
    1.22 -
    1.23 -/* tags */
    1.24 -enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast };
    1.25 -
    1.26 -/* END CUSTOMIZE */
    1.27 +#include CONFIG
    1.28  
    1.29  /* mask shorthands, used in event.c and client.c */
    1.30  #define ButtonMask	(ButtonPressMask | ButtonReleaseMask)