mirror of
https://github.com/kastdeur/dotfiles.git
synced 2024-11-17 17:03:32 +01:00
10 lines
289 B
Bash
10 lines
289 B
Bash
|
# Define DOTFILES for easy access
|
||
|
DOTFILES="$HOME/.dotfiles"
|
||
|
|
||
|
# Source main profile
|
||
|
[ -r "$DOTFILES/profiles/main.sh" ] && source "$DOTFILES/profiles/main.sh"
|
||
|
|
||
|
|
||
|
# Source machine specific profile
|
||
|
[ -r "$DOTFILES/profiles/$HOSTNAME.profile"] && source "$DOTFILES/profiles/$HOSTNAME.profile"
|