JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed crappy variables
[dwm.git] / config.arg.h
index 9423833..41ae9b1 100644 (file)
@@ -4,17 +4,19 @@
  */
 
 #define TAGS \
-const char *tags[] = { "work", "net", "fnord", NULL };
+const char *tags[] = { "dev", "work", "net", "fnord", NULL };
 
 #define DEFMODE                        dotile /* dofloat */
+#define FLOATSYMBOL            "><>"
+#define TILESYMBOL             "[]="
 
 #define FONT                   "-*-terminus-medium-*-*-*-12-*-*-*-*-*-iso10646-*"
-#define SELBGCOLOR             "#666699"
+#define SELBGCOLOR             "#333366"
 #define SELFGCOLOR             "#eeeeee"
-#define NORMBGCOLOR            "#333366"
-#define NORMFGCOLOR            "#cccccc"
-#define STATUSBGCOLOR          "#dddddd"
-#define STATUSFGCOLOR          "#222222"
+#define NORMBGCOLOR            "#333333"
+#define NORMFGCOLOR            "#dddddd"
+#define STATUSBGCOLOR          "#222222"
+#define STATUSFGCOLOR          "#9999cc"
 
 #define MODKEY                 Mod1Mask
 #define MASTERW                        60 /* percent */
@@ -23,7 +25,7 @@ const char *tags[] = { "work", "net", "fnord", NULL };
 static Key key[] = { \
        /* modifier                     key             function        arguments */ \
        { MODKEY|ShiftMask,             XK_Return,      spawn, \
-               { .cmd = "exec uxterm -bg '#e0e0e0' -fg '#000000' -cr '#000000' +sb -fn '"FONT"'" } }, \
+               { .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \
        { MODKEY,                       XK_p,           spawn, \
                { .cmd = "exec `ls -lL /usr/bin /usr/X11R6/bin /usr/local/bin 2>/dev/null | " \
                        "awk 'NF>2 && $1 ~ /^[^d].*x/ {print $NF}' | sort -u | dmenu`" } }, \
@@ -34,17 +36,21 @@ static Key key[] = { \
        { MODKEY|ShiftMask,             XK_1,           tag,            { .i = 0 } }, \
        { MODKEY|ShiftMask,             XK_2,           tag,            { .i = 1 } }, \
        { MODKEY|ShiftMask,             XK_3,           tag,            { .i = 2 } }, \
+       { MODKEY|ShiftMask,             XK_4,           tag,            { .i = 3 } }, \
        { 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|ShiftMask,             XK_c,           killclient,     { 0 } }, \
        { MODKEY,                       XK_space,       togglemode,     { 0 } }, \
        { MODKEY,                       XK_1,           view,           { .i = 0 } }, \
        { MODKEY,                       XK_2,           view,           { .i = 1 } }, \
        { MODKEY,                       XK_3,           view,           { .i = 2 } }, \
+       { MODKEY,                       XK_4,           view,           { .i = 3 } }, \
        { 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|ShiftMask,             XK_q,           quit,           { 0 } }, \
 };