X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/8c4623da80af2e25e3f0d15f56598624f4f37d5d..c75168186b0d63195263aa25d75ec914b419935f:/config.arg.h?ds=sidebyside diff --git a/config.arg.h b/config.arg.h index da51a43..aa3c0c9 100644 --- a/config.arg.h +++ b/config.arg.h @@ -3,7 +3,7 @@ */ #define TAGS \ -const char *tags[] = { "dev", "work", "net", "fnord", NULL }; +const char *tags[] = { "home", "net", "www", "mon", "fnord", NULL }; #define DEFMODE dotile /* dofloat */ #define FLOATSYMBOL "><>" @@ -15,11 +15,11 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL }; #define SELBGCOLOR "#336699" #define SELFGCOLOR "#eeeeee" #define STATUSBGCOLOR "#222222" -#define STATUSFGCOLOR "#99ccff" +#define STATUSFGCOLOR "#dddddd" #define MASTER 600 /* per thousand */ #define MODKEY Mod1Mask -#define NMASTER 2 /* clients in master area */ +#define NMASTER 1 /* clients in master area */ #define SNAP 40 /* pixel */ #define KEYS \ @@ -43,10 +43,12 @@ static Key key[] = { \ { MODKEY|ShiftMask, XK_2, tag, { .i = 1 } }, \ { MODKEY|ShiftMask, XK_3, tag, { .i = 2 } }, \ { MODKEY|ShiftMask, XK_4, tag, { .i = 3 } }, \ + { MODKEY|ShiftMask, XK_5, tag, { .i = 4 } }, \ { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, { .i = 0 } }, \ { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, { .i = 1 } }, \ { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, { .i = 2 } }, \ { MODKEY|ControlMask|ShiftMask, XK_4, toggletag, { .i = 3 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_5, toggletag, { .i = 4 } }, \ { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ { MODKEY, XK_space, togglemode, { 0 } }, \ { MODKEY|ShiftMask, XK_space, togglefloat, { 0 } }, \ @@ -55,17 +57,19 @@ static Key key[] = { \ { MODKEY, XK_2, view, { .i = 1 } }, \ { MODKEY, XK_3, view, { .i = 2 } }, \ { MODKEY, XK_4, view, { .i = 3 } }, \ + { MODKEY, XK_5, view, { .i = 4 } }, \ { MODKEY|ControlMask, XK_1, toggleview, { .i = 0 } }, \ { MODKEY|ControlMask, XK_2, toggleview, { .i = 1 } }, \ { MODKEY|ControlMask, XK_3, toggleview, { .i = 2 } }, \ { MODKEY|ControlMask, XK_4, toggleview, { .i = 3 } }, \ + { MODKEY|ControlMask, XK_5, toggleview, { .i = 4 } }, \ { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \ }; #define RULES \ static Rule rule[] = { \ /* class:instance:title regex tags regex isfloat */ \ - { "Firefox.*", "net", False }, \ + { "Firefox.*", "www", False }, \ { "Gimp.*", NULL, True }, \ { "MPlayer.*", NULL, True }, \ { "Acroread.*", NULL, True }, \