mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-12 14:43:32 +01:00
11 lines
440 B
Bash
11 lines
440 B
Bash
# Define XDG_DOTFILES_DIR for easy access
|
|
export XDG_DOTFILES_DIR="$HOME/.dotfiles"
|
|
|
|
# Source main profile
|
|
[ -r "$XDG_DOTFILES_DIR/profiles/main.sh" ] && source "$XDG_DOTFILES_DIR/profiles/main.sh"
|
|
|
|
# Source machine specific profile
|
|
[ -r "$XDG_DOTFILES_DIR/profiles/$HOSTNAME.profile" ] && source "$XDG_DOTFILES_DIR/profiles/$HOSTNAME.profile"
|
|
|
|
# Always source a local profile
|
|
[ -r "$HOME/.profile.local" ] && source "$HOME/.profile.local"
|