blob: fe92a756599120332a5f491bb57a7dd4987f7d68 (
plain)
1
2
3
4
5
6
7
8
9
|
# Create .config if it doesn't exist and set XDG vars if they are unset
mkdir -p $HOME/.config
export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:=$HOME/.config}
export XDG_DATA_HOME=${XDG_DATA_HOME:=$HOME/.config}
# Load bashrc to mantain only one file
if [ -f "$HOME/.bashrc" ]; then
source "$HOME/.bashrc"
fi
|