diff options
| author | Anselm R. Garbe <arg@10kloc.org> | 2006-08-30 13:00:30 +0200 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@10kloc.org> | 2006-08-30 13:00:30 +0200 | 
| commit | 9927b9e64253643f409bd1ef22349cf4e9ca7727 (patch) | |
| tree | 4ff426c340d06cd635075a9e12d47c49109cf795 | |
| parent | 1b492dffc8adce5fb061e9df4504f7dd1ebcf478 (diff) | |
small fix in config.arg.h
| -rw-r--r-- | config.arg.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/config.arg.h b/config.arg.h index 7a03460..2d80342 100644 --- a/config.arg.h +++ b/config.arg.h @@ -27,9 +27,9 @@ static Key key[] = { \  	{ MODKEY|ShiftMask,		XK_Return,	spawn, \  		{ .cmd = "exec uxterm -bg '#111111' -fg '#eeeeee' -cr '#eeeeee' +sb -fn '"FONT"'" } }, \  	{ MODKEY,			XK_p,		spawn, \ -		{ .cmd = "exec \"$(IFS=:; for dir in $PATH; do " \ -			"for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; " \ -			"done | sort -u | dmenu)\"" } }, \ +		{ .cmd = "exe=\"$(IFS=:; for dir in $PATH; do " \ +			 "for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; " \ +			 "done | sort -u | dmenu)\" && exec \"$exe\"" } }, \  	{ MODKEY,			XK_j,		focusnext,	{ 0 } }, \  	{ MODKEY,			XK_k,		focusprev,	{ 0 } }, \  	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \ | 
