From 68f4d8a543b94c715d54d9ebba76fa3b9477d3da Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Tue, 18 Jun 2024 02:18:05 +0200 Subject: [PATCH] init --- uninstall.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 uninstall.sh 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" +)