Add .profiles

This commit is contained in:
Alex 2024-02-19 17:45:19 +01:00
parent 6fa7c01922
commit 46095f4fa0
Signed by: l-x
GPG key ID: 0B7107C9393169F4

24
dotconf/profile Normal file
View file

@ -0,0 +1,24 @@
function __source() {
if [ -f "$1" ]; then
source "$1"
fi
}
function __path() {
if [ -d "$1" ] ; then
PATH="$1:$PATH"
fi
}
if [ -n "$BASH_VERSION" ]; then
__source "$HOME/.bashrc"
fi
__path "$HOME/bin"
__path "$HOME/.local/bin"
__path "$HOME/.local/share/JetBrains/Toolbox/scripts"
__path "$HOME/.config/composer/vendor/bin"
__source "$HOME/.cargo/env"
unset __source
unset __path