dotfiles/update-configs.sh
2024-08-07 14:58:48 -05:00

10 lines
269 B
Bash
Executable file

#!/bin/sh
if ! test -d ~/.dotfiles; then
echo "installing dotfiles..."
fi
find -- * -type f -name "*.org" | while read -r file; do
echo "installing ${file} configuration..."
# emacs --batch "${file}" -f package-initialize --eval '(org-babel-tangle)'
done