X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/1b63f832c528958042d72fddc318af5aefdcb68a..57871415c16664cce494b68dd3e985bcb32942c5:/dwm.h?ds=sidebyside diff --git a/dwm.h b/dwm.h index 0b6b21f..0ed778c 100644 --- a/dwm.h +++ b/dwm.h @@ -4,30 +4,12 @@ */ #include - -/* CUSTOMIZE */ - -#define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" -#define BGCOLOR "#0a2c2d" -#define FGCOLOR "#ddeeee" -#define BORDERCOLOR "#176164" -#define MODKEY Mod1Mask /* Mod4Mask */ -/* -#define BGCOLOR "#666699" -#define FGCOLOR "#eeeeee" -#define BORDERCOLOR "#9999CC" -*/ -#define MASTERW 52 /* percent */ -#define WM_PROTOCOL_DELWIN 1 - -/* tags */ -enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast }; - -/* END CUSTOMIZE */ +#include CONFIG /* mask shorthands, used in event.c and client.c */ -#define ButtonMask (ButtonPressMask | ButtonReleaseMask) -#define MouseMask (ButtonMask | PointerMotionMask) +#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask) +#define MOUSEMASK (BUTTONMASK | PointerMotionMask) +#define PROTODELWIN 1 typedef union Arg Arg; typedef struct Client Client;