wip: getting stuff to sync properly

This commit is contained in:
2025-03-04 21:12:09 +00:00
parent 60bfd74d8a
commit 1b5d6b1a59
5 changed files with 12 additions and 90 deletions

View File

@@ -13,7 +13,12 @@ git pull
#
# sed -i "s/#$current_host: //" ./hypr/hyprland/monitors.conf
rsync -av .config ~ --delete
for file in ".config"/*; do
echo "rsync -av $file ~/.config --delete"
rsync -av $file ~/.config --delete
done
# metapac sync
# Cleanup

4
scripts/sync.bash Normal file
View File

@@ -0,0 +1,4 @@
for file in ".config"/*; do
echo $file
echo "rsync -av ~/$file .config/$file --delete"
done