X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/f504aea13289c7fd25d499d2582558d4e311bfbf..6a8e176df103f406f81fff47d5ab456ccc867a0d:/config.arg.h diff --git a/config.arg.h b/config.arg.h index 4297376..d842e25 100644 --- a/config.arg.h +++ b/config.arg.h @@ -9,9 +9,9 @@ const char *tags[] = { "fnord", "dev", "net", "work", "misc", NULL }; #define DEFMODE dotile /* dofloat */ #define DEFTAG 1 /* index */ #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" -#define BGCOLOR "#0a2c2d" -#define FGCOLOR "#ddeeee" -#define BORDERCOLOR "#176164" +#define BGCOLOR "#444444" +#define FGCOLOR "#ffffff" +#define BORDERCOLOR "#222222" #define MODKEY Mod1Mask #define NUMLOCKMASK Mod2Mask #define MASTERW 60 /* percent */ @@ -47,16 +47,15 @@ static Key key[] = { \ { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \ { MODKEY|ShiftMask, XK_Return, spawn, \ - { .cmd = "exec urxvt -tr +sb -bg black -fg white -cr white " \ + { .cmd = "exec urxvt -bg '#ffffea' +sb " \ "-fn '-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*'" } }, \ }; #define RULES \ - const unsigned int two[] = { 2 }; \ static Rule rule[] = { \ - /* class:instance tags isfloat */ \ - { "Firefox.*", two, False }, \ - { "Gimp.*", NULL, True}, \ - { "MPlayer.*", NULL, True}, \ - { "Acroread.*", NULL, True}, \ + /* class:instance regex tags regex isfloat */ \ + { "Firefox.*", "net", False }, \ + { "Gimp.*", NULL, True}, \ + { "MPlayer.*", NULL, True}, \ + { "Acroread.*", NULL, True}, \ };