cmd=$(dmenu_path | ~/bin/dmenu "$@")
if [ -n "$cmd" ]; then
# NOTE: only tested with zsh and sh, and has issues with expansion; zsh
- # SH_WORD_SPLIT is unset by default, `=' flag is required to expand it
+ # SH_WORD_SPLIT is unset by default, `=' flag is required to expand it.
+ # XXX: probably has issues with single quotes
+ # XXX: does not perform any(!) shell expansion
echo "alias sudo='sudo -Ak'
cmd='$(echo "$cmd" | sed "s/'/'\\\\''/g")'" '
if [ -n "$ZSH_VERSION" ]; then