dotfiles/.profile
2023-02-01 02:08:20 -05:00

16 lines
313 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-fzfrc | ~/.bash_fzf ] ; then
rm ~/.bash-fzfrc ~/.bash_fzf
fi
. ~/.bashrc