Finally a dendritic structure that will give me a way to builkd my

system in a logical and consistent way.
This commit is contained in:
2026-03-06 16:17:19 +01:00
parent 1d2e7b66ba
commit 9efed999ca
8987 changed files with 104977 additions and 554 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
# Source and destination directories
SOURCE_DIR="/home/henrov/Repos/nixos/henrovnix_ok/assets/copy_stuff/"
DEST_DIR="/home/henrov/"
# Check if source directory exists
if [ ! -d "$SOURCE_DIR" ]; then
echo "Error: Source directory $SOURCE_DIR does not exist."
exit 1
fi
# Use rsync to copy files, overwriting symlinks and existing files
# --no-group --no-owner preserves your user ownership
rsync -av --no-group --no-owner "$SOURCE_DIR/" "$DEST_DIR/"
echo "Config files copied from $SOURCE_DIR to $DEST_DIR. Symlinks replaced with editable files."
pkill waybar && waybar &
hyprctl reload