Clean path
This commit is contained in:
parent
381d828c8c
commit
f048134bc3
15
bash/path
15
bash/path
|
@ -7,13 +7,16 @@ if [ -d "$HOME/bin" ]; then
|
|||
fi
|
||||
|
||||
if [ -d "$HOME/.local/bin" ]; then
|
||||
PATH="$HOME/.local/bin::$PATH"
|
||||
#PATH="$HOME/.local/bin:$HOME/.local/bin/firefox:$PATH"
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
fi
|
||||
|
||||
#if [ -d "$HOME/.local/share/applications" ] ; then
|
||||
#export PATH="$HOME/.local/share/applications/:$PATH"
|
||||
#fi
|
||||
if [ -d "$HOME/.local/share/bin" ]; then
|
||||
PATH="$HOME/.local/share/bin:$PATH"
|
||||
fi
|
||||
|
||||
if [ -d "$HOME/.local/share/applications" ] ; then
|
||||
PATH="$HOME/.local/share/applications/:$PATH"
|
||||
fi
|
||||
|
||||
# Nix Packages
|
||||
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then
|
||||
|
@ -30,7 +33,7 @@ if [ -d "$HOME/scripts" ]; then
|
|||
PATH="$HOME/scripts:$PATH"
|
||||
fi
|
||||
|
||||
# Perl
|
||||
# Go
|
||||
PATH="${HOME}/go/bin:$PATH"
|
||||
|
||||
# Perl
|
||||
|
|
Loading…
Reference in New Issue