X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=config.h;h=9dec0692d5093ef226581a8c37754224af9867a9;hp=cf24e67c07355fbfc92198a97181b849b25151ec;hb=0235a84ef286db5c97239615ae525ce973641941;hpb=5d831eaa94e1ef91e4227298bdd5eec7b2181caf diff --git a/config.h b/config.h index cf24e67..9dec069 100644 --- a/config.h +++ b/config.h @@ -4,40 +4,28 @@ #define BARPOS BarTop /* BarBot, BarOff */ #define BORDERPX 1 #define FONT "-*-terminus-medium-r-*-*-12-*-*-*-*-*-iso10646-*" -#define DARK /* LIGHT */ -#ifdef DARK -#define NORMBORDERCOLOR "#222" +#define NORMBORDERCOLOR "#333" #define NORMBGCOLOR "#000" -#define NORMFGCOLOR "#ddd" -#define SELBORDERCOLOR "#09f" -#else -#define NORMBORDERCOLOR "#666" -#define NORMBGCOLOR "#eee" -#define NORMFGCOLOR "#222" +#define NORMFGCOLOR "#ccc" #define SELBORDERCOLOR "#f00" -#endif -#define SELBGCOLOR "#369" +#define SELBGCOLOR "#00f" #define SELFGCOLOR "#fff" /* tagging */ -#define TAGS \ -const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; -#define RULES \ -static Rule rules[] = { \ - /* class:instance:title regex tags regex isfloating */ \ - { "Firefox", "3", False }, \ - { "Gimp", NULL, True }, \ - { "MPlayer", NULL, True }, \ - { "Acroread", NULL, True }, \ +static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; +static Rule rules[] = { + /* class:instance:title regex tags regex isfloating */ + { "Firefox", "3", False }, + { "Gimp", NULL, True }, + { "MPlayer", NULL, True }, + { "Acroread", NULL, True }, }; /* layout(s) */ -#include "tile.h" -#define LAYOUTS \ -static Layout layouts[] = { \ - /* symbol function */ \ - { "[]=", tile }, /* first entry is default */ \ - { "><>", floating }, \ +static Layout layouts[] = { + /* symbol function */ + { "[]=", tile }, /* first entry is default */ + { "><>", floating }, }; #define RESIZEHINTS True /* False - respect size hints in tiled resizals */ #define MWFACT 0.6 /* master width factor [0.1 .. 0.9] */