mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
Andrei Jiroh Halili
81aca31cdf
Plus, in this commit: * updated most of shell rc and then some Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
18 lines
409 B
Bash
18 lines
409 B
Bash
#!/usr/bin/env bash
|
|
|
|
export HOST_SPECIFIC_BASHRC_PATH="$HOME/.config/$HOSTNAME.bashrc"
|
|
|
|
# Stage 0: Source dotenv stuff from homedir
|
|
source "$HOME/.env"
|
|
if [[ -f "$HOME/.env.local" ]]; then
|
|
source "$HOME/.env.local"
|
|
LOCAL_DOTENV_LOADED=true
|
|
fi
|
|
|
|
# Stage 1: Source the ~/.profile
|
|
source "$HOME/.profile"
|
|
|
|
|
|
# Added by Toolbox App
|
|
export PATH="$PATH:/home/ajhalili2006/.local/share/JetBrains/Toolbox/scripts"
|
|
|