mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-18 01:13:31 +01:00
14 lines
541 B
Bash
14 lines
541 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"
|
|
|
|
# Also check in .local for a profile
|
|
[ -r "$HOME/.local/profile" ] && source "$HOME/.local/profile"
|