mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 00:59:38 +00:00
a41e28d091
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
20 lines
601 B
Bash
20 lines
601 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"
|
|
|
|
_byobu_sourced=1 . /usr/bin/byobu-launch 2>/dev/null || true
|
|
|
|
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then . "$HOME/.nix-profile/etc/profile.d/nix.sh"; fi # added by Nix installer
|