diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..6627275 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,14 @@ +#!/bin/sh +set -e +cd "$(dirname "$(realpath "$0")")" +alias log='echo "[uninstall.sh]"' + + +log "This will alter your home directory '$HOME'." +log "Press [return] to continue." +read + +( + cd "./data" + stow --verbose --delete --target="$HOME" "home" +)