Ich habe folgende ~ / .bash_profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
und ~ / .bashrc
### Check for shell interactivity.
if [[ $- != *i* ]] ; then
return
fi
### Nyan-cat prompt.
PS1="\`if [ \$? = 0 ]; then echo \[\e[35m\]^_^\[\e[0m\]; else echo \[\e[31m\]O_O\[\e[0m\]; fi\` \$ "
### PATH
export PATH=$PATH:$HOME/bin
Also wenn ich Emacs vom Terminal aus starte alles OK. Wenn ich es mit dmenu
(getenv "PATH") starte und die exec-path
Variable kein ~/bin
Verzeichnis enthält .
Wenn ich es in xfce mit xfrun4
Befehl mit der gleichen Bash-Konfiguration mache, funktionieren alle Nähte auch.
Was ist das Problem mit dem Menü?