X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/b515765216c46246358256da6098ea2c07a93c84..dc5c070c44d9af434405c8d6538abd06299d3298:/config.default.h diff --git a/config.default.h b/config.default.h index 1e8cb39..ec1804f 100644 --- a/config.default.h +++ b/config.default.h @@ -5,7 +5,7 @@ enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast }; #define TAGS \ -char *tags[TLast] = { \ +const char *tags[TLast] = { \ [Tfnord] = "fnord", \ [Tdev] = "dev", \ [Tnet] = "net", \ @@ -21,7 +21,7 @@ char *tags[TLast] = { \ #define BORDERCOLOR "#9999CC" #define MODKEY Mod1Mask #define NUMLOCKMASK Mod2Mask -#define MASTERW 52 /* percent */ +#define MASTERW 60 /* percent */ #define KEYS \ const char *term[] = { "xterm", NULL }; \ @@ -57,6 +57,6 @@ static Key key[] = { \ #define RULES \ static Rule rule[] = { \ /* class:instance tags isfloat */ \ - { "Firefox.*", { [Tnet] = "net" }, False }, \ + { "Firefox.*", { [Tnet] = True }, False }, \ { "Gimp.*", { 0 }, True}, \ };