dotfiles/.profile
2023-02-01 01:51:12 -05:00

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