dotfiles/files/.profile

12 lines
331 B
Plaintext
Raw Normal View History

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-05-05 18:54:53 -04:00
export POKE=true
2023-05-05 18:57:10 -04:00
[[ -f ~/.bashrc ]] && . ~/.bashrc