You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/setup.sh

67 lines
1.8 KiB

#!/usr/bin/env bash
2 years ago
set -e
# Accept the `--remove` argument to delete symlinks of the files to be copied
# This is useful for testing a clean installation (eg. `setup.sh --remove && setup.sh`)
# Note: Normal setup overwrites all incorrect symlinks, so re-installation in place is idempotent
2 years ago
if [ "$1" == '--remove' ]; then
remove=1
else
remove=0
fi
DIR="$( dirname "$(readlink -f "${BASH_SOURCE[0]}")" )"
SRC_DIR="$DIR/src"
# read file basenames to copy_files array
copy_files=()
2 years ago
files_to_remove=()
while IFS= read -r -d $'\0'; do
# remove leading $SRC_DIR/ from found files
# this allows directories to be preserved
copy_files+=( "${REPLY//$SRC_DIR\//}" )
done < <(find "$SRC_DIR" -type f -print0)
2 years ago
if [ $remove -eq 1 ]; then
for file in "${copy_files[@]}"; do
if [ -L "$file" ]; then
rm -v "$file"
else
echo "Skipping deletion of ${file} because it is not a symlink"
fi
done
elif [ $remove -eq 0 ]; then
# Ensure all files are absent in $HOME
for file in "${copy_files[@]}"; do
if [ -e "${HOME}/${file}" ] && ! [ -L "${HOME}/${file}" ]; then
files_to_remove+=( "$file" )
fi
done
if [ "${#files_to_remove}" -ne 0 ]; then
echo "Remove the following files from home directory and re-run setup!"
printf '%s\n' "${files_to_remove[@]}"
exit 1
fi
# Symlink files to $HOME, overwrite incorrect symlinks
2 years ago
for file in "${copy_files[@]}"; do
source="${SRC_DIR}/${file}"
target="${HOME}/${file}"
if [[ -h "$target" ]] && [[ "$source" == "$(readlink -f "$target")" ]]; then
echo "Skipping '${source}' -> '${target}' link as it is already linked"
else
# NOTE: This applies 0700 permissions only to the deepest directory
# shellcheck disable=SC2174
mkdir -m 0700 -p "$(dirname "$target")"
ln -sv "$source" "$target"
fi
2 years ago
done
fi
# install vscode configs
source vscode.sh
# set up SSH config and create key if needed
source ssh.sh