X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=config.default.h;h=ec1804f0d2941a4f86e9aeeaf6fbefb399478205;hb=8cc7f3bace087dfb024a23115c211d82b35614ae;hp=3b6eb16d8c654b4e309982d1991cc6264b7e9153;hpb=5d3fd3707b262508d1750cf95ac2e2f666be6163;p=dwm.git diff --git a/config.default.h b/config.default.h index 3b6eb16..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", \ @@ -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}, \ };