From 36987fddf6bb3d138cfad9812f5edfc63dfd8525 Mon Sep 17 00:00:00 2001 From: foswret Date: Sat, 5 Jul 2025 14:50:16 -0500 Subject: added the dotfiles deployment script --- scripts/dotfiles.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 scripts/dotfiles.sh diff --git a/scripts/dotfiles.sh b/scripts/dotfiles.sh new file mode 100755 index 0000000..1a0675a --- /dev/null +++ b/scripts/dotfiles.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +TIMESTAMP=$(date +"%T on %D") + +rsync -av --delete ~/.config/nvim/ ~/.config/dotfiles/nvim +rsync -av --delete ~/.config/mpd/ ~/.config/dotfiles/mpd +rsync -av --delete ~/.config/dunst/ ~/.config/dotfiles/dunst +rsync -av --delete ~/.config/zathura/ ~/.config/dotfiles/zathura +cp -r ~/.config/X11/Xresources ~/.config/dotfiles/Xresources + +cd ~/.config/dotfiles && git add . +git commit -m "automated commit at ($TIMESTAMP)" +git push myserver master -- cgit v1.2.3