LunarVim/utils/installer/uninstall.sh

73 lines
1.7 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -eo pipefail
ARGS_REMOVE_BACKUPS=0
declare -r XDG_DATA_HOME="${XDG_DATA_HOME:-"$HOME/.local/share"}"
declare -r XDG_CACHE_HOME="${XDG_CACHE_HOME:-"$HOME/.cache"}"
declare -r XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-"$HOME/.config"}"
declare -r LUNARVIM_RUNTIME_DIR="${LUNARVIM_RUNTIME_DIR:-"$XDG_DATA_HOME/lunarvim"}"
declare -r LUNARVIM_CONFIG_DIR="${LUNARVIM_CONFIG_DIR:-"$XDG_CONFIG_HOME/lvim"}"
2022-04-20 13:22:26 +02:00
declare -r LUNARVIM_CACHE_DIR="${LUNARVIM_CACHE_DIR:-"$XDG_CACHE_HOME/lvim"}"
declare -a __lvim_dirs=(
"$LUNARVIM_CONFIG_DIR"
"$LUNARVIM_RUNTIME_DIR"
"$LUNARVIM_CACHE_DIR"
)
function usage() {
echo "Usage: uninstall.sh [<options>]"
echo ""
echo "Options:"
echo " -h, --help Print this help message"
echo " --remove-backups Remove old backup folders as well"
}
function parse_arguments() {
while [ "$#" -gt 0 ]; do
case "$1" in
--remove-backups)
ARGS_REMOVE_BACKUPS=1
;;
-h | --help)
usage
exit 0
;;
esac
shift
done
}
function remove_lvim_dirs() {
for dir in "${__lvim_dirs[@]}"; do
rm -rf "$dir"
if [ "$ARGS_REMOVE_BACKUPS" -eq 1 ]; then
rm -rf "$dir.{bak,old}"
fi
done
}
function remove_lvim_bin() {
local legacy_bin="/usr/local/bin/lvim "
if [ -x "$legacy_bin" ]; then
echo "Error! Unable to remove $legacy_bin without elevation. Please remove manually."
exit 1
fi
lvim_bin="$(command -v lvim 2>/dev/null)"
rm -f "$lvim_bin"
}
function main() {
parse_arguments "$@"
echo "Removing LunarVim binary..."
remove_lvim_bin
echo "Removing LunarVim directories..."
remove_lvim_dirs
echo "Uninstalled LunarVim!"
}
main "$@"