2023-01-07 14:18:21 +00:00
|
|
|
#!/usr/bin/env sh
|
2023-01-05 17:22:50 +00:00
|
|
|
# if running bash
|
|
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
|
|
# include .bashrc if it exists
|
|
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
|
|
. "$HOME/.bashrc"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2023-01-08 03:02:37 +00:00
|
|
|
export PATH="/usr/local/bin${PATH:+:}$PATH" # ~vern specifics, might work on this soon.
|
|
|
|
mesg n 2> /dev/null || true
|
|
|
|
|
|
|
|
# then import the rest
|
2023-01-05 17:22:50 +00:00
|
|
|
source "$HOME/.env"
|
2023-01-07 14:18:21 +00:00
|
|
|
source "$HOME/.config/aliases"
|
2023-01-19 11:22:37 +00:00
|
|
|
export POSIX_PROFILE_SOURCED=true
|
|
|
|
|
|
|
|
|
|
|
|
# Added by Toolbox App
|
|
|
|
export PATH="$PATH:/home/ajhalili2006/.local/share/JetBrains/Toolbox/scripts"
|
|
|
|
|