Initial commit

This commit is contained in:
2026-07-02 15:56:21 +02:00
commit 4529a3c472
92 changed files with 13593 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Apply dotfiles: copy the plain tree in 03-user/dotfiles/ into $HOME.
DOTS="$REPO_ROOT/03-user/dotfiles"
if [ -z "$(ls -A "$DOTS" 2>/dev/null)" ]; then
echo " 03-user/dotfiles empty — nothing to deploy"
return 0 2>/dev/null || exit 0
fi
cp -a "$DOTS/." "$HOME/"
# If exec bits were lost in transit (USB exFAT / optional custom ISO), restore them
# on the deployed scripts. They're all shebang scripts (no binaries) → detect by shebang.
grep -rlI '^#!' "$HOME/scripts" "$HOME/.config/waybar/scripts" 2>/dev/null \
| xargs -r chmod +x