dotfiles/.profile

16 lines
297 B
Plaintext
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
2023-02-01 02:08:54 -05:00
if [ -f ~/.bash_fzf ] ; then
2023-02-01 02:05:31 -05:00
rm ~/.bash-fzfrc ~/.bash_fzf
2023-02-01 01:49:42 -05:00
fi
2023-01-08 10:01:17 -05:00
. ~/.bashrc