initial scaffold: install.sh + .bashrc + .gitconfig

This commit is contained in:
2026-05-20 21:41:34 +02:00
commit 1da04846dc
4 changed files with 65 additions and 0 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/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"