diff --git a/home/dot_profile b/home/dot_profile index 1ccbdd3..63cbdb3 100644 --- a/home/dot_profile +++ b/home/dot_profile @@ -16,6 +16,11 @@ if [ -n "$BASH_VERSION" ]; then fi fi +# if snap installed, include it +if [ -d "/snap/bin" ] ; then + PATH="$PATH:/snap/bin" +fi + # set PATH so it includes user's private bin if it exists if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH"