aboutsummaryrefslogtreecommitdiff
path: root/update-configs.sh
blob: 1936038e4c92558489dc205f1021b69ac7f43822 (plain)
1
2
3
4
5
6
7
8
9
10
#!/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