added existing

This commit is contained in:
2025-11-16 17:10:41 +01:00
parent dacd367de7
commit 4c69b186f0
16 changed files with 475 additions and 0 deletions

14
scripts/git-update.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
packages="installed-packages.txt"
echo "writing packages into $packages"
pacman -Qqe > $packages
paru -Qqe >> $packages
echo "finished packages into $packages"
echo "copying files outside of home"
cp /etc/fstab $HOME/.root/etc/
cp -r /boot/grub/themes/* $HOME/.root/boot/grub/themes/
echo "finished copying files outside of home"
git add -u
git commit -m 'update'
git push