From 4f6d8ff6c4cf5a2036c180dd0c7ccb1eedd39f5f Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Wed, 7 Aug 2024 15:17:27 -0500 Subject: rename update-home script --- update-home | 29 +++++++++++++++++++++++++++++ update-home.sh | 29 ----------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100755 update-home delete mode 100755 update-home.sh diff --git a/update-home b/update-home new file mode 100755 index 0000000..03b39a4 --- /dev/null +++ b/update-home @@ -0,0 +1,29 @@ +#!/bin/sh + +# install the dotfiles source if it is not present +if ! test -d ~/.dotfiles; then + echo Installing dotfiles... + git clone git@git.sr.ht:~jjanzen/.dotfiles ~/.dotfiles +fi + +if ! diff ~/.dotfiles/update-home ~/.local/bin/update-home; then + cp ~/.dotfiles/update-home ~/.local/bin/update-home || exit 1 + echo Changes have been made to the update-home script. + echo Running the new update-home script. + ~/.local/bin/update-home + exit +fi + +# save the current working directory and move to the dotfiles repository +CWD=$(pwd) +cd ~/.dotfiles || exit +git stash +git checkout main +git pull --rebase + +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 + +cd "${CWD}" || exit diff --git a/update-home.sh b/update-home.sh deleted file mode 100755 index 03b39a4..0000000 --- a/update-home.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -# install the dotfiles source if it is not present -if ! test -d ~/.dotfiles; then - echo Installing dotfiles... - git clone git@git.sr.ht:~jjanzen/.dotfiles ~/.dotfiles -fi - -if ! diff ~/.dotfiles/update-home ~/.local/bin/update-home; then - cp ~/.dotfiles/update-home ~/.local/bin/update-home || exit 1 - echo Changes have been made to the update-home script. - echo Running the new update-home script. - ~/.local/bin/update-home - exit -fi - -# save the current working directory and move to the dotfiles repository -CWD=$(pwd) -cd ~/.dotfiles || exit -git stash -git checkout main -git pull --rebase - -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 - -cd "${CWD}" || exit -- cgit v1.2.3