add ~/.local/bin to PATH, autostart only firefox, change prompt colors

This commit is contained in:
2022-03-07 20:47:14 +01:00
parent ed63dac495
commit 5536588192
3 changed files with 7 additions and 15 deletions

View File

@ -19,17 +19,11 @@ if [ -n "$BASH_VERSION" ]; then
fi
fi
if [ -d "$HOME/.cargo/bin" ] ; then
PATH="$HOME/.cargo/bin:$PATH"
fi
if [ -d "$HOME/go/bin" ] ; then
PATH="$HOME/go/bin:$PATH"
fi
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
for dir in ~/.cargo/bin ~/go/bin ~/.local/bin ~/bin; do
if [ -d "$dir" ]; then
PATH="$dir:$PATH"
fi
done
export PATH