Auto Update

This commit is contained in:
matt1432 2023-02-07 22:59:10 -05:00
parent a86b07b933
commit 25d5f8a439

View file

@ -62,3 +62,8 @@ if [ -d ~/.fzf ]; then
source ~/.fzf/completion.bash
source ~/.fzf/key-bindings.bash
fi
# source client specific scripts
if [ -d ~/.client ]; then
for f in ~/.client/.*; do if [[ -f $f ]]; then source $f ; fi; done
fi