dotfiles/.profile

16 lines
287 B
Text
Raw Normal View History

2023-01-07 03:16:13 -05:00
if [ -d ~/git/dotfiles ] ; then
2023-01-08 04:36:29 -05:00
bash ~/git/dotfiles/pull.sh
2023-02-01 01:49:42 -05:00
rm ~/.bashrc ~/.bash_aliases ~/.profile
2023-01-08 04:36:29 -05:00
(cd ~/git/dotfiles
2023-02-01 01:51:12 -05:00
ln ./.bashrc ../../
ln ./.bash_aliases ../../
2023-01-08 04:36:29 -05:00
ln ./.profile ../../)
2023-01-07 03:16:13 -05:00
fi
2023-01-08 10:01:17 -05:00
2023-02-01 01:49:42 -05:00
# TODO remove eventually
if [ -f ~/.bash-fzfrc ] ; then
rm ~/.bash-fzfrc
fi
2023-01-08 10:01:17 -05:00
. ~/.bashrc