tapplied grabbing-- and shell_minimal - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit e48de30516d5a0400b27a0d6bfeb1b9181e8ebf5
(DIR) parent 1f0060caa36d969deab2643b829529ea943c4714
(HTM) Author: arg@10ksloc.org <unknown>
Date: Mon, 7 Aug 2006 13:40:31 +0200
applied grabbing-- and shell_minimal
Diffstat:
M event.c | 8 --------
M util.c | 2 +-
2 files changed, 1 insertion(+), 9 deletions(-)
---
(DIR) diff --git a/event.c b/event.c
t@@ -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);
}
(DIR) diff --git a/util.c b/util.c
t@@ -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);