diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-08-11 19:50:25 -0500 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-08-11 19:50:25 -0500 |
commit | dc05afff4c07b812ae2219c3d4e30247f93845b0 (patch) | |
tree | 0d7a6e8b65de6968c7e982d8eaa7076ae94dbe98 /install | |
parent | 2289c8861b0bbe53c2ebfc5cc626dbd4026c8e25 (diff) |
add git send email config
Diffstat (limited to 'install')
-rwxr-xr-x | install | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -29,10 +29,16 @@ else fi echo 'installing configuration files...' -find -L -- . -type f -name "*.org" | while read -r file; do +find -L -- . -type f -name "*\.org" | while read -r file; do echo " installing $file..." emacs --batch "$file" -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1 done +find -L -- . -type f -name "*\.org\.gpg" | while read -r file; do + echo " installing $file..." + gpg -d "$file" > tmp.org + emacs --batch tmp.org -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1 + rm tmp.org +done echo 'installing wallpaper...' cp .wallpaper ~/.wallpaper |