This commit is contained in:
JOLIMAITRE Matthieu 2024-06-18 02:18:05 +02:00
parent c8a2785a38
commit 68f4d8a543

14
uninstall.sh Executable file
View file

@ -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"
)