JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
moved BORDERPX to config.*.h
[dwm.git] / config.arg.h
index b87c9dc..2458fe4 100644 (file)
@@ -3,19 +3,20 @@
  */
 
 #define TAGS \
-const char *tags[] = { "home", "net", "www", "mon", "fnord", NULL };
+const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", NULL };
 
 #define DEFMODE                        dotile          /* dofloat */
 #define FLOATSYMBOL            "><>"
-#define TILESYMBOL             "[%u]="
+#define TILESYMBOL             "[]="
+#define BORDERPX               1
 
 #define FONT                   "-*-terminus-medium-r-*-*-14-*-*-*-*-*-*-*"
-#define NORMBGCOLOR            "#111111"
-#define NORMFGCOLOR            "#cccccc"
-#define SELBGCOLOR             "#336699"
-#define SELFGCOLOR             "#eeeeee"
-#define STATUSBGCOLOR          "#222222"
-#define STATUSFGCOLOR          "#dddddd"
+#define NORMBORDERCOLOR                "#333"
+#define NORMBGCOLOR            "#222"
+#define NORMFGCOLOR            "#ccc"
+#define SELBORDERCOLOR         "#9cf"
+#define SELBGCOLOR             "#555"
+#define SELFGCOLOR             "#fff"
 
 #define MASTER                 600             /* per thousand */
 #define MODKEY                 Mod1Mask
@@ -24,9 +25,9 @@ const char *tags[] = { "home", "net", "www", "mon", "fnord", NULL };
 
 #define KEYS \
 static Key key[] = { \
-       /* modifier                     key             function                argument */ \
+       /* modifier                     key             function        argument */ \
        { MODKEY|ShiftMask,             XK_Return,      spawn, \
-               { .cmd = "exec uxterm -bg black -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
+               { .cmd = "exec uxterm -bg '#222' -fg '#eee' -cr '#eee' +sb -fn '"FONT"'" } }, \
        { MODKEY,                       XK_p,           spawn, \
                { .cmd = "exe=\"$(lsx `echo $PATH | sed 's/:/ /g'` | sort -u " \
                        " | dmenu -fn '"FONT"' -nb '"NORMBGCOLOR"' -nf '"NORMFGCOLOR"' " \
@@ -44,11 +45,19 @@ static Key key[] = { \
        { MODKEY|ShiftMask,             XK_3,           tag,            { .i = 2 } }, \
        { MODKEY|ShiftMask,             XK_4,           tag,            { .i = 3 } }, \
        { 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 } }, \
        { MODKEY|ControlMask|ShiftMask, XK_4,           toggletag,      { .i = 3 } }, \
        { 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 } }, \
@@ -58,18 +67,26 @@ static Key key[] = { \
        { MODKEY,                       XK_3,           view,           { .i = 2 } }, \
        { MODKEY,                       XK_4,           view,           { .i = 3 } }, \
        { 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 } }, \
        { MODKEY|ControlMask,           XK_4,           toggleview,     { .i = 3 } }, \
        { 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.*",                  "www",          False }, \
+       { "Firefox.*",                  "3",            False }, \
        { "Gimp.*",                     NULL,           True }, \
        { "MPlayer.*",                  NULL,           True }, \
        { "Acroread.*",                 NULL,           True }, \