X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.h;h=75aa50c70c397af322dce2897a38b48d576e312e;hb=0c3544d42fba23b99a07cf18f35ae25a3121765f;hp=e7ddaa7b1761d9af0a04d624bedbf8688d844e33;hpb=c09bf8da071e05e2c1d714f0d31d41fe944bc11b;p=dwm.git diff --git a/dwm.h b/dwm.h index e7ddaa7..75aa50c 100644 --- a/dwm.h +++ b/dwm.h @@ -8,9 +8,14 @@ /********** CUSTOMIZE **********/ #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" +#define BGCOLOR "#0a2c2d" +#define FGCOLOR "#ddeeee" +#define BORDERCOLOR "#176164" +/* #define BGCOLOR "#666699" #define FGCOLOR "#eeeeee" #define BORDERCOLOR "#9999CC" +*/ #define MASTERW 52 /* percent */ #define WM_PROTOCOL_DELWIN 1 @@ -66,7 +71,7 @@ struct Client { int grav; unsigned int border; long flags; - Bool dofloat; + Bool isfloat; Window win; Window title; Client *next; @@ -77,7 +82,7 @@ struct Rule { const char *class; const char *instance; char *tags[TLast]; - Bool dofloat; + Bool isfloat; }; struct Key {