tvl-depot/configs/setup_configs.sh

39 lines
932 B
Bash
Raw Normal View History

#!/usr/bin/env bash
pc_settings_path="${HOME}/pc_settings"
2016-11-10 17:47:44 +01:00
2016-11-10 18:12:45 +01:00
config_files=( \
".zsh_profile" \
".tmux.conf" \
".ctags" \
".vimrc" \
".emacs" \
2016-11-10 18:12:45 +01:00
)
2016-11-10 17:47:44 +01:00
for i in {1..5}; do
2016-11-10 17:47:44 +01:00
cf="${config_files[i]}"
echo "\"${cf}\": "
if [ -f "${HOME}/${cf}" ] && [ ! -L "${HOME}/${cf}" ]; then
echo -n "Backing up ${cf} ... " && \
mv "${HOME}/${cf}" "${HOME}/${cf}.bak" && \
2016-11-10 17:47:44 +01:00
echo "Done."
fi
if [ -L "${HOME}/${cf}" ]; then
if [ $(readlink "${HOME}/${cf}") = "${pc_settings_path}/configs/${cf}" ]; then
echo "Already properly symlinked to \"${pc_settings_path}/configs\"."
2016-11-10 17:47:44 +01:00
else
2016-11-10 18:12:45 +01:00
echo "Already symlinked but NOT to the proper location. Aborting..."
2016-11-10 17:47:44 +01:00
fi
else
echo -n "Symlinking to ${pc_settings_path}/configs/${cf} ... " && \
ln -s "${pc_settings_path}/configs/${cf}" "${HOME}/${cf}" && \
2016-11-10 17:47:44 +01:00
echo "Done."
fi
2016-11-10 18:12:45 +01:00
echo ""
2016-11-10 17:47:44 +01:00
done