This commit is contained in:
JOLIMAITRE Matthieu 2024-06-18 02:13:46 +02:00
commit c8a2785a38
3 changed files with 15 additions and 0 deletions

0
.gitignore vendored Normal file
View file

1
data/home/feur Normal file
View file

@ -0,0 +1 @@
feur

14
install.sh Executable file
View file

@ -0,0 +1,14 @@
#!/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"
)