JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied grabbing-- and shell_minimal
authorarg@10ksloc.org <unknown>
Mon, 7 Aug 2006 11:40:31 +0000 (13:40 +0200)
committerarg@10ksloc.org <unknown>
Mon, 7 Aug 2006 11:40:31 +0000 (13:40 +0200)
event.c
util.c

diff --git a/event.c b/event.c
index 69a628e..2e4f62e 100644 (file)
--- a/event.c
+++ b/event.c
@@ -359,20 +359,12 @@ grabkeys()
 
        for(i = 0; i < len; i++) {
                code = XKeysymToKeycode(dpy, key[i].keysym);
-               /* normal */
-               XUngrabKey(dpy, code, key[i].mod, root);
                XGrabKey(dpy, code, key[i].mod, root, True,
                                GrabModeAsync, GrabModeAsync);
-               /* capslock */
-               XUngrabKey(dpy, code, key[i].mod | LockMask, root);
                XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
                                GrabModeAsync, GrabModeAsync);
-               /* numlock */
-               XUngrabKey(dpy, code, key[i].mod | NUMLOCKMASK, root);
                XGrabKey(dpy, code, key[i].mod | NUMLOCKMASK, root, True,
                                GrabModeAsync, GrabModeAsync);
-               /* capslock & numlock */
-               XUngrabKey(dpy, code, key[i].mod | NUMLOCKMASK | LockMask, root);
                XGrabKey(dpy, code, key[i].mod | NUMLOCKMASK | LockMask, root, True,
                                GrabModeAsync, GrabModeAsync);
        }
diff --git a/util.c b/util.c
index 990ad28..4cc748f 100644 (file)
--- a/util.c
+++ b/util.c
@@ -56,7 +56,7 @@ spawn(Arg *arg)
                                close(ConnectionNumber(dpy));
                        setsid();
                        execl(shell, shell, "-c", arg->cmd, NULL);
-                       fprintf(stderr, "dwm: execl '%s'", arg->cmd);
+                       fprintf(stderr, "dwm: execl '%s -c %s'", shell, arg->cmd);
                        perror(" failed");
                }
                exit(0);