JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
new colors
[dwm.git] / kb.c
diff --git a/kb.c b/kb.c
index 7caae15..7eb788a 100644 (file)
--- a/kb.c
+++ b/kb.c
@@ -8,7 +8,7 @@
 #include <X11/keysym.h>
 
 static const char *term[] = { 
-       "xterm", "-u8", "-bg", "black", "-fg", "white", "-fn",
+       "xterm", "-bg", "black", "-fg", "white", "-fn",
        "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*", 0 
 };
 
@@ -19,6 +19,8 @@ static const char *proglist[] = {
 static Key key[] = {
        { Mod1Mask, XK_Return, run, term },
        { Mod1Mask, XK_p, run, proglist }, 
+       { Mod1Mask, XK_k, sel, "prev"}, 
+       { Mod1Mask, XK_j, sel, "next"}, 
        { Mod1Mask | ShiftMask, XK_c, kill, NULL}, 
        { Mod1Mask | ShiftMask, XK_q, quit, NULL},
 };