From: Anselm R. Garbe Date: Fri, 13 Oct 2006 16:47:24 +0000 (+0200) Subject: using lsx instead of Jukka's shell construct X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=b60406cb9b599e03666dfedb916f2a3690e13879 using lsx instead of Jukka's shell construct --- diff --git a/config.arg.h b/config.arg.h index 1a63ac8..721e532 100644 --- a/config.arg.h +++ b/config.arg.h @@ -26,10 +26,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 = "exe=\"$(IFS=:; for dir in $PATH; do " \ - "for file in \"$dir\"/*; do [ -x \"$file\" ] && echo \"${file##*/}\"; done; done " \ - "| sort -u | dmenu -font '"FONT"' -normbg '"NORMBGCOLOR"' -normfg '"NORMFGCOLOR"' " \ - "-selbg '"SELBGCOLOR"' -selfg '"SELFGCOLOR"')\" && exec $exe" } }, \ + { .cmd = "exe=\"$(lsx `echo $PATH | sed 's/:/ /g'` | sort -u " \ + " | dmenu -font '"FONT"' -normbg '"NORMBGCOLOR"' -normfg '"NORMFGCOLOR"' " \ + "-selbg '"SELBGCOLOR"' -selfg '"SELFGCOLOR"')\" && exec $exe" } }, \ { MODKEY, XK_j, focusnext, { 0 } }, \ { MODKEY, XK_k, focusprev, { 0 } }, \ { MODKEY, XK_Return, zoom, { 0 } }, \