2023-02-04 00:50:10 -05:00
|
|
|
if [ -d ~/git/dotfiles ] ; then
|
2023-02-05 14:06:47 -05:00
|
|
|
TODELETE="$(command ls --almost-all ~/git/dotfiles/files)"
|
2023-02-04 00:50:10 -05:00
|
|
|
bash ~/git/dotfiles/pull.sh
|
2023-02-04 01:09:29 -05:00
|
|
|
(cd ~ ; rm $(command ls --almost-all ~/git/dotfiles/files))
|
2023-02-04 00:50:10 -05:00
|
|
|
(cd ~/git/dotfiles
|
2023-02-04 01:16:39 -05:00
|
|
|
for f in ./files/.*; do if [[ -f $f ]]; then ln ./$f ../../ ; fi; done)
|
2023-02-04 00:50:10 -05:00
|
|
|
fi
|
|
|
|
|
2023-02-26 01:36:59 -05:00
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|