local-bin.zsh: changed guard variable to be in sync with $HOME/.xsessionrc

This commit is contained in:
Tobias Schmidl 2019-07-25 16:34:11 +02:00 committed by Tobias Schmidl
parent 38223553e7
commit f220870b9e

8
.xsessionrc Normal file
View file

@ -0,0 +1,8 @@
# Make sure we include this file only once
if [ -z $ZSH_LOCAL_BIN_ALREADY_SET ];
then
export ZSH_LOCAL_BIN_ALREADY_SET=1
# set PATH so it includes user's private bin if it exists
[ -d "$HOME/.local/bin" ] && PATH="$HOME/.local/bin:$PATH"
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
fi