Regenerated

This commit is contained in:
2026-03-25 20:46:28 +00:00
parent fa44f9863b
commit 5bc4b819f4
2295 changed files with 82198 additions and 42 deletions
+5
View File
@@ -0,0 +1,5 @@
find ~/Repos/nixos/Droidnix/assets/traveldroid/copy_2_home -type l | while read -r link; do
target="$(readlink -f "$link")" || continue
tmp="$(mktemp)"
cp --dereference "$link" "$tmp" && mv "$tmp" "$link"
done