dotfiles/install.sh
2024-06-18 02:13:46 +02:00

14 lines
235 B
Bash
Executable file

#!/bin/sh
set -e
cd "$(dirname "$(realpath "$0")")"
alias log='echo "[install.sh]"'
log "This will alter your home directory '$HOME'."
log "Press [return] to continue."
read
(
cd "./data"
stow --verbose --target="$HOME" "home"
)