On 2013-04-16, at 10:17, Ross Lagerwall wrote:
> -dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
> +exec "$(dmenu_path | dmenu "$@")"
On 2013-04-16, at 15:47, Ross Lagerwall wrote:
> -dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} &
> +eval "exec "$(dmenu_path | dmenu "$@")
To not screw up the argument passing, you could just have dropped the quotes
around $(), as in:
exec $(dmenu_path | dmenu "$@")
-Truls
