11 lines
252 B
Bash
Executable File
11 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Idempotent install — symlinks files from this repo into ~ on every run.
|
|
set -euo pipefail
|
|
SRC=/tmp/dotfiles-bootstrap
|
|
mkdir -p ~/.config
|
|
for f in ; do
|
|
mkdir -p ~/.
|
|
ln -sf "/home/" ~/""
|
|
done
|
|
echo "dotfiles linked from /home"
|