X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.arg.h;h=f6d67a8ab48b0693093597c3dc61bbb11e232a67;hb=e1811c37cac6c3032bf0c87dddb62e9ecf6c57ee;hp=9a72b5992dfdd2a2d3bc9d4055f75c9b6ae3566c;hpb=11a08b9cfced047c9c4d2969fa96d74d90c1f46f;p=dwm.git diff --git a/config.arg.h b/config.arg.h index 9a72b59..f6d67a8 100644 --- a/config.arg.h +++ b/config.arg.h @@ -3,11 +3,11 @@ */ #define TAGS \ -const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", NULL }; +const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL }; #define DEFMODE dotile /* dofloat */ #define FLOATSYMBOL "><>" -#define TILESYMBOL "[]=" +#define TILESYMBOL "[%u]=" /* %u is replaced with nmaster */ #define FONT "-*-terminus-medium-r-*-*-14-*-*-*-*-*-*-*" #define NORMBGCOLOR "#111111" @@ -15,7 +15,7 @@ const char *tags[] = { "I", "II", "III", "IV", "V", "VI", "VII", NULL }; #define SELBGCOLOR "#336699" #define SELFGCOLOR "#eeeeee" #define STATUSBGCOLOR "#222222" -#define STATUSFGCOLOR "#99ccff" +#define STATUSFGCOLOR "#dddddd" #define MASTER 600 /* per thousand */ #define MODKEY Mod1Mask @@ -46,6 +46,8 @@ static Key key[] = { \ { MODKEY|ShiftMask, XK_5, tag, { .i = 4 } }, \ { MODKEY|ShiftMask, XK_6, tag, { .i = 5 } }, \ { MODKEY|ShiftMask, XK_7, tag, { .i = 6 } }, \ + { MODKEY|ShiftMask, XK_8, tag, { .i = 7 } }, \ + { MODKEY|ShiftMask, XK_9, tag, { .i = 8 } }, \ { MODKEY|ControlMask|ShiftMask, XK_1, toggletag, { .i = 0 } }, \ { MODKEY|ControlMask|ShiftMask, XK_2, toggletag, { .i = 1 } }, \ { MODKEY|ControlMask|ShiftMask, XK_3, toggletag, { .i = 2 } }, \ @@ -53,6 +55,8 @@ static Key key[] = { \ { MODKEY|ControlMask|ShiftMask, XK_5, toggletag, { .i = 4 } }, \ { MODKEY|ControlMask|ShiftMask, XK_6, toggletag, { .i = 5 } }, \ { MODKEY|ControlMask|ShiftMask, XK_7, toggletag, { .i = 6 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_8, toggletag, { .i = 7 } }, \ + { MODKEY|ControlMask|ShiftMask, XK_9, toggletag, { .i = 8 } }, \ { MODKEY|ShiftMask, XK_c, killclient, { 0 } }, \ { MODKEY, XK_space, togglemode, { 0 } }, \ { MODKEY|ShiftMask, XK_space, togglefloat, { 0 } }, \ @@ -64,6 +68,8 @@ static Key key[] = { \ { MODKEY, XK_5, view, { .i = 4 } }, \ { MODKEY, XK_6, view, { .i = 5 } }, \ { MODKEY, XK_7, view, { .i = 6 } }, \ + { MODKEY, XK_8, view, { .i = 7 } }, \ + { MODKEY, XK_9, view, { .i = 8 } }, \ { MODKEY|ControlMask, XK_1, toggleview, { .i = 0 } }, \ { MODKEY|ControlMask, XK_2, toggleview, { .i = 1 } }, \ { MODKEY|ControlMask, XK_3, toggleview, { .i = 2 } }, \ @@ -71,13 +77,15 @@ static Key key[] = { \ { MODKEY|ControlMask, XK_5, toggleview, { .i = 4 } }, \ { MODKEY|ControlMask, XK_6, toggleview, { .i = 5 } }, \ { MODKEY|ControlMask, XK_7, toggleview, { .i = 6 } }, \ + { MODKEY|ControlMask, XK_8, toggleview, { .i = 7 } }, \ + { MODKEY|ControlMask, XK_9, toggleview, { .i = 8 } }, \ { MODKEY|ShiftMask, XK_q, quit, { 0 } }, \ }; #define RULES \ static Rule rule[] = { \ /* class:instance:title regex tags regex isfloat */ \ - { "Firefox.*", "net", False }, \ + { "Firefox.*", "3", False }, \ { "Gimp.*", NULL, True }, \ { "MPlayer.*", NULL, True }, \ { "Acroread.*", NULL, True }, \