15 lines
297 B
Bash
15 lines
297 B
Bash
if [ -d ~/git/dotfiles ] ; then
|
|
bash ~/git/dotfiles/pull.sh
|
|
rm ~/.bashrc ~/.bash_aliases ~/.profile
|
|
(cd ~/git/dotfiles
|
|
ln ./.bashrc ../../
|
|
ln ./.bash_aliases ../../
|
|
ln ./.profile ../../)
|
|
fi
|
|
|
|
# TODO remove eventually
|
|
if [ -f ~/.bash_fzf ] ; then
|
|
rm ~/.bash-fzfrc ~/.bash_fzf
|
|
fi
|
|
|
|
. ~/.bashrc
|