tvl-depot/emacs/symlink_custom_functions.sh

19 lines
436 B
Bash
Raw Normal View History

#!/usr/bin/env zsh
SCRIPT_DIR="${HOME}/dotfiles/emacs"
EMACS_FUNC_DIR="${HOME}/.emacs.d"
for source in $(find $SCRIPT_DIR -type f -name '*.el'); do
filename=$(basename $source)
target="${EMACS_FUNC_DIR}/${filename}"
if [ ! -L $target ]; then
echo -n "Creating symlink for ${filename} ... " && \
ln -s $source $EMACS_FUNC_DIR && \
echo "Done."
else
echo "${filename} is already properly symlinked."
fi
done