diff --git a/bash/path b/bash/path index 8121ce365..234bbec9e 100644 --- a/bash/path +++ b/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