Update path generation

This commit is contained in:
John Mertz 2023-07-16 14:38:39 -04:00
parent 661865034a
commit b12a3ab989
1 changed files with 17 additions and 14 deletions

View File

@ -1,34 +1,37 @@
# vim: ft=sh
# Local user bin
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH"
fi
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin::$PATH"
#PATH="$HOME/.local/bin:$HOME/.local/bin/firefox:$PATH"
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin::$PATH"
#PATH="$HOME/.local/bin:$HOME/.local/bin/firefox:$PATH"
fi
#if [ -d "$HOME/.local/share/applications" ] ; then
#export PATH="$HOME/.local/share/applications/:$PATH"
#export PATH="$HOME/.local/share/applications/:$PATH"
#fi
# Nix Packages
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
source $HOME/.nix-profile/etc/profile.d/nix.sh
source $HOME/.nix-profile/etc/profile.d/nix.sh
fi
# Private scripts
if [ -d "$HOME/.private-scripts" ] ; then
PATH="$HOME/.private-scripts:$PATH"
if [ -d "$HOME/.private-scripts" ]; then
PATH="$HOME/.private-scripts:$PATH"
fi
# Public scripts
if [ -d "$HOME/scripts" ] ; then
PATH="$HOME/scripts:$PATH"
if [ -d "$HOME/scripts" ]; then
PATH="$HOME/scripts:$PATH"
fi
# Perl
PATH="${HOME}/go/bin:$PATH"
# Perl
PATH="${HOME}/perl5/bin:$PATH"
@ -36,16 +39,16 @@ PATH="${HOME}/perl5/bin:$PATH"
export PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
eval "$(pyenv init -)"
fi
# Rust
PATH="${HOME}/.cargo/bin:$PATH"
if [ -f "/run/.containerenv" ]; then
source "$HOME/.dotfiles/bash/path.distrobox"
source "$HOME/.dotfiles/bash/path.distrobox"
else
source "$HOME/.dotfiles/bash/path.host"
source "$HOME/.dotfiles/bash/path.host"
fi
# Export PATH