X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.default.h;h=ec1804f0d2941a4f86e9aeeaf6fbefb399478205;hb=8cc7f3bace087dfb024a23115c211d82b35614ae;hp=1e8cb39a8b5f1b5cd33873433572cde71016cfb6;hpb=b515765216c46246358256da6098ea2c07a93c84;p=dwm.git 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}, \ };